EXIficient

com.siemens.ct.exi.types
Enum BuiltInType

java.lang.Object
  extended by java.lang.Enum<BuiltInType>
      extended by com.siemens.ct.exi.types.BuiltInType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<BuiltInType>

public enum BuiltInType
extends java.lang.Enum<BuiltInType>

TODO Description

Version:
0.4.20090421
Author:
Daniel.Peintner.EXT@siemens.com, Joerg.Heuer@siemens.com

Enum Constant Summary
BIG_INTEGER
           
BINARY_BASE64
           
BINARY_HEX
           
BOOLEAN
           
BOOLEAN_PATTERN
           
DATETIME
           
DECIMAL
           
DOUBLE
           
ENUMERATION
           
FLOAT
           
INTEGER
           
LIST
           
LONG
           
NBIT_BIG_INTEGER
           
NBIT_INTEGER
           
NBIT_LONG
           
RESTRICTED_CHARACTER_SET
           
STRING
           
UNSIGNED_BIG_INTEGER
           
UNSIGNED_INTEGER
           
UNSIGNED_LONG
           
 
Method Summary
static BuiltInType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static BuiltInType[] 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

BINARY_BASE64

public static final BuiltInType BINARY_BASE64

BINARY_HEX

public static final BuiltInType BINARY_HEX

BOOLEAN

public static final BuiltInType BOOLEAN

BOOLEAN_PATTERN

public static final BuiltInType BOOLEAN_PATTERN

DECIMAL

public static final BuiltInType DECIMAL

FLOAT

public static final BuiltInType FLOAT

DOUBLE

public static final BuiltInType DOUBLE

NBIT_INTEGER

public static final BuiltInType NBIT_INTEGER

NBIT_LONG

public static final BuiltInType NBIT_LONG

NBIT_BIG_INTEGER

public static final BuiltInType NBIT_BIG_INTEGER

UNSIGNED_INTEGER

public static final BuiltInType UNSIGNED_INTEGER

UNSIGNED_LONG

public static final BuiltInType UNSIGNED_LONG

UNSIGNED_BIG_INTEGER

public static final BuiltInType UNSIGNED_BIG_INTEGER

INTEGER

public static final BuiltInType INTEGER

LONG

public static final BuiltInType LONG

BIG_INTEGER

public static final BuiltInType BIG_INTEGER

DATETIME

public static final BuiltInType DATETIME

STRING

public static final BuiltInType STRING

ENUMERATION

public static final BuiltInType ENUMERATION

LIST

public static final BuiltInType LIST

RESTRICTED_CHARACTER_SET

public static final BuiltInType RESTRICTED_CHARACTER_SET
Method Detail

values

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

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

valueOf

public static BuiltInType 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

EXIficient