Enum Order.OrderType

java.lang.Object
java.lang.Enum<Order.OrderType>
org.knowm.xchange.dto.Order.OrderType
All Implemented Interfaces:
Serializable, Comparable<Order.OrderType>, java.lang.constant.Constable
Enclosing class:
Order

public static enum Order.OrderType extends Enum<Order.OrderType>
  • Enum Constant Details

    • BID

      public static final Order.OrderType BID
      Buying order (the trader is providing the counter currency)
    • ASK

      public static final Order.OrderType ASK
      Selling order (the trader is providing the base currency)
    • EXIT_ASK

      public static final Order.OrderType EXIT_ASK
      This is to close a short position when trading crypto currency derivatives such as swaps, futures for CFD's.
    • EXIT_BID

      public static final Order.OrderType EXIT_BID
      This is to close a long position when trading crypto currency derivatives such as swaps, futures for CFD's.
  • Method Details

    • values

      public static Order.OrderType[] 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 Order.OrderType 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
    • getOpposite

      public Order.OrderType getOpposite()