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

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

public static enum BuySideQuoteRequest.OrderStatus
extends java.lang.Enum<BuySideQuoteRequest.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_PENDING
          The pass pending.
QUOTED
          The quoted.
REJECTED
          The rejected.
 
Method Summary
static BuySideQuoteRequest.OrderStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BuySideQuoteRequest.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 BuySideQuoteRequest.OrderStatus NEW_PENDING
The new pending.


NEW

public static final BuySideQuoteRequest.OrderStatus NEW
The new.


PASS_PENDING

public static final BuySideQuoteRequest.OrderStatus PASS_PENDING
The pass pending.


PASS

public static final BuySideQuoteRequest.OrderStatus PASS
The pass.


REJECTED

public static final BuySideQuoteRequest.OrderStatus REJECTED
The rejected.


QUOTED

public static final BuySideQuoteRequest.OrderStatus QUOTED
The quoted.


COUNTER_PENDING

public static final BuySideQuoteRequest.OrderStatus COUNTER_PENDING
The counter pending.


COUNTER

public static final BuySideQuoteRequest.OrderStatus COUNTER
The counter.


HIT_LIFT_PENDING

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


HIT_LIFT

public static final BuySideQuoteRequest.OrderStatus HIT_LIFT
The hit lift.


FILLED

public static final BuySideQuoteRequest.OrderStatus FILLED
The filled.


EXPIRED_PENDING

public static final BuySideQuoteRequest.OrderStatus EXPIRED_PENDING
The expired pending.


EXPIRED

public static final BuySideQuoteRequest.OrderStatus EXPIRED
The expired.


COVER_PENDING

public static final BuySideQuoteRequest.OrderStatus COVER_PENDING
The cover pending.


COVER

public static final BuySideQuoteRequest.OrderStatus COVER
The cover.


DONE_AWAY_PENDING

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


DONE_AWAY

public static final BuySideQuoteRequest.OrderStatus DONE_AWAY
The done away.

Method Detail

values

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