net.sourceforge.fixagora.sellside.shared.communication
Enum SellSideNewOrderSingleEntry.OrderStatus

java.lang.Object
  extended by java.lang.Enum<SellSideNewOrderSingleEntry.OrderStatus>
      extended by net.sourceforge.fixagora.sellside.shared.communication.SellSideNewOrderSingleEntry.OrderStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SellSideNewOrderSingleEntry.OrderStatus>
Enclosing class:
SellSideNewOrderSingleEntry

public static enum SellSideNewOrderSingleEntry.OrderStatus
extends java.lang.Enum<SellSideNewOrderSingleEntry.OrderStatus>

The Enum OrderStatus.


Enum Constant Summary
CANCEL
          The cancel.
DONE_FOR_DAY
          The done for day.
DONE_FOR_DAY_PENDING
          The done for day pending.
FILLED
          The filled.
FILLED_PENDING
          The filled pending.
MODIFIED
          The modified.
NEW
          The new.
PARTIALLY_FILLED
          The partially filled.
PARTIALLY_FILLED_PENDING
          The partially filled pending.
REJECTED
          The rejected.
REJECTED_PENDING
          The rejected pending.
 
Method Summary
static SellSideNewOrderSingleEntry.OrderStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SellSideNewOrderSingleEntry.OrderStatus[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NEW

public static final SellSideNewOrderSingleEntry.OrderStatus NEW
The new.


MODIFIED

public static final SellSideNewOrderSingleEntry.OrderStatus MODIFIED
The modified.


CANCEL

public static final SellSideNewOrderSingleEntry.OrderStatus CANCEL
The cancel.


REJECTED

public static final SellSideNewOrderSingleEntry.OrderStatus REJECTED
The rejected.


REJECTED_PENDING

public static final SellSideNewOrderSingleEntry.OrderStatus REJECTED_PENDING
The rejected pending.


FILLED

public static final SellSideNewOrderSingleEntry.OrderStatus FILLED
The filled.


FILLED_PENDING

public static final SellSideNewOrderSingleEntry.OrderStatus FILLED_PENDING
The filled pending.


PARTIALLY_FILLED

public static final SellSideNewOrderSingleEntry.OrderStatus PARTIALLY_FILLED
The partially filled.


PARTIALLY_FILLED_PENDING

public static final SellSideNewOrderSingleEntry.OrderStatus PARTIALLY_FILLED_PENDING
The partially filled pending.


DONE_FOR_DAY

public static final SellSideNewOrderSingleEntry.OrderStatus DONE_FOR_DAY
The done for day.


DONE_FOR_DAY_PENDING

public static final SellSideNewOrderSingleEntry.OrderStatus DONE_FOR_DAY_PENDING
The done for day pending.

Method Detail

values

public static SellSideNewOrderSingleEntry.OrderStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SellSideNewOrderSingleEntry.OrderStatus c : SellSideNewOrderSingleEntry.OrderStatus.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SellSideNewOrderSingleEntry.OrderStatus valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null