com.teraspaces.qwfix
Enum FIXSchemaFieldGroup

java.lang.Object
  extended by java.lang.Enum<FIXSchemaFieldGroup>
      extended by com.teraspaces.qwfix.FIXSchemaFieldGroup
All Implemented Interfaces:
Serializable, Comparable<FIXSchemaFieldGroup>

public enum FIXSchemaFieldGroup
extends Enum<FIXSchemaFieldGroup>

Defines the group the field belongs to.


Enum Constant Summary
BODY
          The field is in the message body.
HEADER
          The field is in the message header.
NA
          The field doesn't not belong to any group.
TRAILER
          The field is in the message trailer.
 
Method Summary
static FIXSchemaFieldGroup valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FIXSchemaFieldGroup[] 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

HEADER

public static final FIXSchemaFieldGroup HEADER
The field is in the message header.


BODY

public static final FIXSchemaFieldGroup BODY
The field is in the message body.


TRAILER

public static final FIXSchemaFieldGroup TRAILER
The field is in the message trailer.


NA

public static final FIXSchemaFieldGroup NA
The field doesn't not belong to any group.

Method Detail

values

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

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

valueOf

public static FIXSchemaFieldGroup valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null