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

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

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

The Enum OrderStatus.


Enum Constant Summary
COUNTER
          The counter.
COUNTER_PENDING
          The counter pending.
COVER
          The cover.
COVER_PENDING
          The cover pending.
DONE_AWAY
          The done away.
DONE_AWAY_PENDING
          The done away pending.
EXPIRED
          The expired.
EXPIRED_PENDING
          The expired pending.
FILLED
          The filled.
HIT_LIFT
          The hit lift.
HIT_LIFT_PENDING
          The hit lift pending.
NEW
          The new.
NEW_PENDING
          The new pending.
PASS
          The pass.
PASS_ALL_PENDING
          The pass all pending.
PASS_PENDING
          The pass pending.
QUOTED
          The quoted.
REJECTED
          The rejected.
 
Method Summary
static BuySideQuoteRequestEntry.OrderStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BuySideQuoteRequestEntry.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 BuySideQuoteRequestEntry.OrderStatus NEW_PENDING
The new pending.


NEW

public static final BuySideQuoteRequestEntry.OrderStatus NEW
The new.


PASS_ALL_PENDING

public static final BuySideQuoteRequestEntry.OrderStatus PASS_ALL_PENDING
The pass all pending.


PASS_PENDING

public static final BuySideQuoteRequestEntry.OrderStatus PASS_PENDING
The pass pending.


PASS

public static final BuySideQuoteRequestEntry.OrderStatus PASS
The pass.


REJECTED

public static final BuySideQuoteRequestEntry.OrderStatus REJECTED
The rejected.


QUOTED

public static final BuySideQuoteRequestEntry.OrderStatus QUOTED
The quoted.


COUNTER_PENDING

public static final BuySideQuoteRequestEntry.OrderStatus COUNTER_PENDING
The counter pending.


COUNTER

public static final BuySideQuoteRequestEntry.OrderStatus COUNTER
The counter.


HIT_LIFT_PENDING

public static final BuySideQuoteRequestEntry.OrderStatus HIT_LIFT_PENDING
The hit lift pending.


HIT_LIFT

public static final BuySideQuoteRequestEntry.OrderStatus HIT_LIFT
The hit lift.


FILLED

public static final BuySideQuoteRequestEntry.OrderStatus FILLED
The filled.


EXPIRED_PENDING

public static final BuySideQuoteRequestEntry.OrderStatus EXPIRED_PENDING
The expired pending.


EXPIRED

public static final BuySideQuoteRequestEntry.OrderStatus EXPIRED
The expired.


COVER_PENDING

public static final BuySideQuoteRequestEntry.OrderStatus COVER_PENDING
The cover pending.


COVER

public static final BuySideQuoteRequestEntry.OrderStatus COVER
The cover.


DONE_AWAY_PENDING

public static final BuySideQuoteRequestEntry.OrderStatus DONE_AWAY_PENDING
The done away pending.


DONE_AWAY

public static final BuySideQuoteRequestEntry.OrderStatus DONE_AWAY
The done away.

Method Detail

values

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