net.sourceforge.fixagora.basis.client.model.message
Enum FIXField.Type

java.lang.Object
  extended by java.lang.Enum<FIXField.Type>
      extended by net.sourceforge.fixagora.basis.client.model.message.FIXField.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FIXField.Type>
Enclosing class:
FIXField

public static enum FIXField.Type
extends java.lang.Enum<FIXField.Type>

The Enum Type.


Enum Constant Summary
AMT
          The amt.
BOOLEAN
          The boolean.
CHAR
          The char.
COUNTRY
          The country.
CURRENCY
          The currency.
DATA
          The data.
DATE
          The date.
DAYOFMONTH
          The dayofmonth.
EXCHANGE
          The exchange.
FLOAT
          The float.
INT
          The int.
LANGUAGE
          The language.
LENGTH
          The length.
LOCALMKTDATE
          The localmktdate.
MONTH_YEAR
          The month year.
MONTHYEAR
          The monthyear.
MULTIPLECHARVALUE
          The multiplecharvalue.
MULTIPLESTRINGVALUE
          The multiplestringvalue.
MULTIPLEVALUESTRING
          The multiplevaluestring.
NUMINGROUP
          The numingroup.
PERCENTAGE
          The percentage.
PRICE
          The price.
PRICEOFFSET
          The priceoffset.
QTY
          The qty.
SEQNUM
          The seqnum.
STRING
          The string.
TIME
          The time.
TZTIMEONLY
          The tztimeonly.
TZTIMESTAMP
          The tztimestamp.
UNKNOWN
          The unknown.
UTCDATE
          The utcdate.
UTCDATEONLY
          The utcdateonly.
UTCTIMEONLY
          The utctimeonly.
UTCTIMESTAMP
          The utctimestamp.
XMLDATA
          The xmldata.
 
Method Summary
static FIXField.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FIXField.Type[] 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

AMT

public static final FIXField.Type AMT
The amt.


BOOLEAN

public static final FIXField.Type BOOLEAN
The boolean.


CHAR

public static final FIXField.Type CHAR
The char.


COUNTRY

public static final FIXField.Type COUNTRY
The country.


CURRENCY

public static final FIXField.Type CURRENCY
The currency.


DATA

public static final FIXField.Type DATA
The data.


DAYOFMONTH

public static final FIXField.Type DAYOFMONTH
The dayofmonth.


EXCHANGE

public static final FIXField.Type EXCHANGE
The exchange.


FLOAT

public static final FIXField.Type FLOAT
The float.


INT

public static final FIXField.Type INT
The int.


LANGUAGE

public static final FIXField.Type LANGUAGE
The language.


LENGTH

public static final FIXField.Type LENGTH
The length.


LOCALMKTDATE

public static final FIXField.Type LOCALMKTDATE
The localmktdate.


MONTH_YEAR

public static final FIXField.Type MONTH_YEAR
The month year.


MONTHYEAR

public static final FIXField.Type MONTHYEAR
The monthyear.


MULTIPLECHARVALUE

public static final FIXField.Type MULTIPLECHARVALUE
The multiplecharvalue.


MULTIPLESTRINGVALUE

public static final FIXField.Type MULTIPLESTRINGVALUE
The multiplestringvalue.


MULTIPLEVALUESTRING

public static final FIXField.Type MULTIPLEVALUESTRING
The multiplevaluestring.


NUMINGROUP

public static final FIXField.Type NUMINGROUP
The numingroup.


PERCENTAGE

public static final FIXField.Type PERCENTAGE
The percentage.


PRICE

public static final FIXField.Type PRICE
The price.


PRICEOFFSET

public static final FIXField.Type PRICEOFFSET
The priceoffset.


QTY

public static final FIXField.Type QTY
The qty.


SEQNUM

public static final FIXField.Type SEQNUM
The seqnum.


STRING

public static final FIXField.Type STRING
The string.


TIME

public static final FIXField.Type TIME
The time.


TZTIMEONLY

public static final FIXField.Type TZTIMEONLY
The tztimeonly.


TZTIMESTAMP

public static final FIXField.Type TZTIMESTAMP
The tztimestamp.


UNKNOWN

public static final FIXField.Type UNKNOWN
The unknown.


UTCDATE

public static final FIXField.Type UTCDATE
The utcdate.


UTCDATEONLY

public static final FIXField.Type UTCDATEONLY
The utcdateonly.


UTCTIMEONLY

public static final FIXField.Type UTCTIMEONLY
The utctimeonly.


UTCTIMESTAMP

public static final FIXField.Type UTCTIMESTAMP
The utctimestamp.


XMLDATA

public static final FIXField.Type XMLDATA
The xmldata.


DATE

public static final FIXField.Type DATE
The date.

Method Detail

values

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

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

valueOf

public static FIXField.Type 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