com.siemens.ct.exi.datatype
Enum BuiltInType
java.lang.Object
java.lang.Enum<BuiltInType>
com.siemens.ct.exi.datatype.BuiltInType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<BuiltInType>
public enum BuiltInType
- extends java.lang.Enum<BuiltInType>
TODO Description
- Version:
- 0.3.20081110
- Author:
- Daniel.Peintner.EXT@siemens.com, Joerg.Heuer@siemens.com
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 |
BUILTIN_BINARY_BASE64
public static final BuiltInType BUILTIN_BINARY_BASE64
BUILTIN_BINARY_HEX
public static final BuiltInType BUILTIN_BINARY_HEX
BUILTIN_BOOLEAN
public static final BuiltInType BUILTIN_BOOLEAN
BUILTIN_BOOLEAN_PATTERN
public static final BuiltInType BUILTIN_BOOLEAN_PATTERN
BUILTIN_DECIMAL
public static final BuiltInType BUILTIN_DECIMAL
BUILTIN_FLOAT
public static final BuiltInType BUILTIN_FLOAT
BUILTIN_NBIT_INTEGER
public static final BuiltInType BUILTIN_NBIT_INTEGER
BUILTIN_UNSIGNED_INTEGER
public static final BuiltInType BUILTIN_UNSIGNED_INTEGER
BUILTIN_INTEGER
public static final BuiltInType BUILTIN_INTEGER
BUILTIN_QNAME
public static final BuiltInType BUILTIN_QNAME
BUILTIN_DATETIME
public static final BuiltInType BUILTIN_DATETIME
BUILTIN_STRING
public static final BuiltInType BUILTIN_STRING
BUILTIN_ENUMERATION
public static final BuiltInType BUILTIN_ENUMERATION
BUILTIN_LIST
public static final BuiltInType BUILTIN_LIST
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