net.sourceforge.fixagora.buyside.shared.communication
Enum BuySideNewOrderSingleEntry.OrderStatus

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

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

The Enum OrderStatus.


Enum Constant Summary
CANCEL
          The cancel.
CANCEL_PENDING
          The cancel pending.
DONE_FOR_DAY
          The done for day.
FILLED
          The filled.
NEW
          The new.
NEW_PENDING
          The new pending.
PARTIALLY_FILLED
          The partially filled.
REJECTED
          The rejected.
REPLACE_PENDING
          The replace pending.
 
Method Summary
static BuySideNewOrderSingleEntry.OrderStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BuySideNewOrderSingleEntry.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_PENDING

public static final BuySideNewOrderSingleEntry.OrderStatus NEW_PENDING
The new pending.


NEW

public static final BuySideNewOrderSingleEntry.OrderStatus NEW
The new.


CANCEL_PENDING

public static final BuySideNewOrderSingleEntry.OrderStatus CANCEL_PENDING
The cancel pending.


CANCEL

public static final BuySideNewOrderSingleEntry.OrderStatus CANCEL
The cancel.


REJECTED

public static final BuySideNewOrderSingleEntry.OrderStatus REJECTED
The rejected.


REPLACE_PENDING

public static final BuySideNewOrderSingleEntry.OrderStatus REPLACE_PENDING
The replace pending.


FILLED

public static final BuySideNewOrderSingleEntry.OrderStatus FILLED
The filled.


PARTIALLY_FILLED

public static final BuySideNewOrderSingleEntry.OrderStatus PARTIALLY_FILLED
The partially filled.


DONE_FOR_DAY

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

Method Detail

values

public static BuySideNewOrderSingleEntry.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 (BuySideNewOrderSingleEntry.OrderStatus c : BuySideNewOrderSingleEntry.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 BuySideNewOrderSingleEntry.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