net.sourceforge.fixagora.sellside.shared.persistence
Enum SellSideQuoteRequest.OrderStatus

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

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

The Enum OrderStatus.


Enum Constant Summary
COUNTER
          The counter.
COVER
          The cover.
DONE_AWAY
          The done away.
EXPIRED
          The expired.
FILLED
          The filled.
FILLED_PENDING
          The filled pending.
HIT_LIFT
          The hit lift.
NEW
          The new.
PASS
          The pass.
QUOTED
          The quoted.
QUOTED_PENDING
          The quoted pending.
REJECTED
          The rejected.
REJECTED_PENDING
          The rejected pending.
 
Method Summary
static SellSideQuoteRequest.OrderStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SellSideQuoteRequest.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

PASS

public static final SellSideQuoteRequest.OrderStatus PASS
The pass.


REJECTED

public static final SellSideQuoteRequest.OrderStatus REJECTED
The rejected.


REJECTED_PENDING

public static final SellSideQuoteRequest.OrderStatus REJECTED_PENDING
The rejected pending.


QUOTED

public static final SellSideQuoteRequest.OrderStatus QUOTED
The quoted.


QUOTED_PENDING

public static final SellSideQuoteRequest.OrderStatus QUOTED_PENDING
The quoted pending.


COUNTER

public static final SellSideQuoteRequest.OrderStatus COUNTER
The counter.


HIT_LIFT

public static final SellSideQuoteRequest.OrderStatus HIT_LIFT
The hit lift.


FILLED

public static final SellSideQuoteRequest.OrderStatus FILLED
The filled.


FILLED_PENDING

public static final SellSideQuoteRequest.OrderStatus FILLED_PENDING
The filled pending.


EXPIRED

public static final SellSideQuoteRequest.OrderStatus EXPIRED
The expired.


COVER

public static final SellSideQuoteRequest.OrderStatus COVER
The cover.


DONE_AWAY

public static final SellSideQuoteRequest.OrderStatus DONE_AWAY
The done away.


NEW

public static final SellSideQuoteRequest.OrderStatus NEW
The new.

Method Detail

values

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