Enum Order.OrderStatus

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

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

    • PENDING_NEW

      public static final Order.OrderStatus PENDING_NEW
      Initial order when instantiated
    • NEW

      public static final Order.OrderStatus NEW
      Initial order when placed on the order book at exchange
    • PARTIALLY_FILLED

      public static final Order.OrderStatus PARTIALLY_FILLED
      Partially match against opposite order on order book at exchange
    • FILLED

      public static final Order.OrderStatus FILLED
      Fully match against opposite order on order book at exchange
    • PENDING_CANCEL

      public static final Order.OrderStatus PENDING_CANCEL
      Waiting to be removed from order book at exchange
    • PARTIALLY_CANCELED

      public static final Order.OrderStatus PARTIALLY_CANCELED
      Order was partially canceled at exchange
    • CANCELED

      public static final Order.OrderStatus CANCELED
      Removed from order book at exchange
    • PENDING_REPLACE

      public static final Order.OrderStatus PENDING_REPLACE
      Waiting to be replaced by another order on order book at exchange
    • REPLACED

      public static final Order.OrderStatus REPLACED
      Order has been replace by another order on order book at exchange
    • STOPPED

      public static final Order.OrderStatus STOPPED
      Order has been triggered at stop price
    • REJECTED

      public static final Order.OrderStatus REJECTED
      Order has been rejected by exchange and not place on order book
    • EXPIRED

      public static final Order.OrderStatus EXPIRED
      Order has expired it's time to live or trading session and been removed from order book
    • OPEN

      public static final Order.OrderStatus OPEN
      Order is open and waiting to be filled
    • CLOSED

      public static final Order.OrderStatus CLOSED
      Order has been either filled or cancelled
    • UNKNOWN

      public static final Order.OrderStatus UNKNOWN
      The exchange returned a state which is not in the exchange's API documentation. The state of the order cannot be confirmed.
  • Method Details

    • values

      public static Order.OrderStatus[] 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.OrderStatus 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
    • isFinal

      public boolean isFinal()
      Returns true for final Order.OrderStatus
    • isOpen

      public boolean isOpen()
      Returns true when open Order.OrderStatus