net.sourceforge.fixagora.buyside.shared.communication
Enum AbstractBuySideEntry.Side

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

public static enum AbstractBuySideEntry.Side
extends java.lang.Enum<AbstractBuySideEntry.Side>

The Enum Side.


Enum Constant Summary
ASK
          The ask.
BID
          The bid.
 
Method Summary
static AbstractBuySideEntry.Side valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AbstractBuySideEntry.Side[] 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

BID

public static final AbstractBuySideEntry.Side BID
The bid.


ASK

public static final AbstractBuySideEntry.Side ASK
The ask.

Method Detail

values

public static AbstractBuySideEntry.Side[] 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 (AbstractBuySideEntry.Side c : AbstractBuySideEntry.Side.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AbstractBuySideEntry.Side 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