Enum ExchangeEndpoint

java.lang.Object
java.lang.Enum<ExchangeEndpoint>
org.knowm.xchange.independentreserve.util.ExchangeEndpoint
All Implemented Interfaces:
Serializable, Comparable<ExchangeEndpoint>, java.lang.constant.Constable

public enum ExchangeEndpoint extends Enum<ExchangeEndpoint>
Author: Kamil Zbikowski Date: 4/13/15
  • Enum Constant Details

    • CANCEL_ORDER

      public static final ExchangeEndpoint CANCEL_ORDER
    • GET_ACCOUNTS

      public static final ExchangeEndpoint GET_ACCOUNTS
    • GET_BROKER_FEES

      public static final ExchangeEndpoint GET_BROKER_FEES
    • GET_DIGITAL_CURRENCY_DEPOSIT_ADDRESS

      public static final ExchangeEndpoint GET_DIGITAL_CURRENCY_DEPOSIT_ADDRESS
    • GET_OPEN_ORDERS

      public static final ExchangeEndpoint GET_OPEN_ORDERS
    • GET_ORDER_DETAILS

      public static final ExchangeEndpoint GET_ORDER_DETAILS
    • GET_TRADES

      public static final ExchangeEndpoint GET_TRADES
    • GET_TRANSACTIONS

      public static final ExchangeEndpoint GET_TRANSACTIONS
    • PLACE_LIMIT_ORDER

      public static final ExchangeEndpoint PLACE_LIMIT_ORDER
    • PLACE_MARKET_ORDER

      public static final ExchangeEndpoint PLACE_MARKET_ORDER
    • SYNCH_DIGITAL_CURRENCY_DEPOSIT_ADDRESS_WITH_BLOCKCHAIN

      public static final ExchangeEndpoint SYNCH_DIGITAL_CURRENCY_DEPOSIT_ADDRESS_WITH_BLOCKCHAIN
    • WITHDRAW_DIGITAL_CURRENCY

      public static final ExchangeEndpoint WITHDRAW_DIGITAL_CURRENCY
  • Method Details

    • values

      public static ExchangeEndpoint[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static ExchangeEndpoint valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getUrlBasingOnEndpoint

      public static String getUrlBasingOnEndpoint(String sslUri, ExchangeEndpoint endpoint)