com.endeca.BulkLoad.Msg
Enum Data.Assignment.DataType

java.lang.Object
  extended by java.lang.Enum<Data.Assignment.DataType>
      extended by com.endeca.BulkLoad.Msg.Data.Assignment.DataType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Data.Assignment.DataType>
Enclosing class:
Data.Assignment

public static enum Data.Assignment.DataType
extends java.lang.Enum<Data.Assignment.DataType>


Enum Constant Summary
BOOLEAN
           
DATETIME
           
DOUBLE
           
DURATION
           
GEOCODE
           
INT
           
INT64
           
STRING
           
TIME
           
 
Field Summary
static int BOOLEAN_VALUE
           
static int DATETIME_VALUE
           
static int DOUBLE_VALUE
           
static int DURATION_VALUE
           
static int GEOCODE_VALUE
           
static int INT_VALUE
           
static int INT64_VALUE
           
static int STRING_VALUE
           
static int TIME_VALUE
           
 
Method Summary
 int getNumber()
           
static  internalGetValueMap()
           
static Data.Assignment.DataType valueOf(int value)
           
static Data.Assignment.DataType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Data.Assignment.DataType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

STRING

public static final Data.Assignment.DataType STRING

INT64

public static final Data.Assignment.DataType INT64

INT

public static final Data.Assignment.DataType INT

DOUBLE

public static final Data.Assignment.DataType DOUBLE

GEOCODE

public static final Data.Assignment.DataType GEOCODE

BOOLEAN

public static final Data.Assignment.DataType BOOLEAN

DATETIME

public static final Data.Assignment.DataType DATETIME

DURATION

public static final Data.Assignment.DataType DURATION

TIME

public static final Data.Assignment.DataType TIME
Field Detail

STRING_VALUE

public static final int STRING_VALUE
See Also:
Constant Field Values

INT64_VALUE

public static final int INT64_VALUE
See Also:
Constant Field Values

INT_VALUE

public static final int INT_VALUE
See Also:
Constant Field Values

DOUBLE_VALUE

public static final int DOUBLE_VALUE
See Also:
Constant Field Values

GEOCODE_VALUE

public static final int GEOCODE_VALUE
See Also:
Constant Field Values

BOOLEAN_VALUE

public static final int BOOLEAN_VALUE
See Also:
Constant Field Values

DATETIME_VALUE

public static final int DATETIME_VALUE
See Also:
Constant Field Values

DURATION_VALUE

public static final int DURATION_VALUE
See Also:
Constant Field Values

TIME_VALUE

public static final int TIME_VALUE
See Also:
Constant Field Values
Method Detail

values

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

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

valueOf

public static Data.Assignment.DataType 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

getNumber

public final int getNumber()

valueOf

public static Data.Assignment.DataType valueOf(int value)

internalGetValueMap

public static  internalGetValueMap()