net.sourceforge.fixagora.buyside.shared.persistence
Enum BuySideNewOrderSingle.OrderStatus

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

public static enum BuySideNewOrderSingle.OrderStatus
extends java.lang.Enum<BuySideNewOrderSingle.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 BuySideNewOrderSingle.OrderStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BuySideNewOrderSingle.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 BuySideNewOrderSingle.OrderStatus NEW_PENDING
The new pending.


NEW

public static final BuySideNewOrderSingle.OrderStatus NEW
The new.


CANCEL_PENDING

public static final BuySideNewOrderSingle.OrderStatus CANCEL_PENDING
The cancel pending.


CANCEL

public static final BuySideNewOrderSingle.OrderStatus CANCEL
The cancel.


REJECTED

public static final BuySideNewOrderSingle.OrderStatus REJECTED
The rejected.


REPLACE_PENDING

public static final BuySideNewOrderSingle.OrderStatus REPLACE_PENDING
The replace pending.


FILLED

public static final BuySideNewOrderSingle.OrderStatus FILLED
The filled.


PARTIALLY_FILLED

public static final BuySideNewOrderSingle.OrderStatus PARTIALLY_FILLED
The partially filled.


DONE_FOR_DAY

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

Method Detail

values

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