public enum BuiltInType extends Enum<BuiltInType>
Additionally some built-in types are augmented with information necessary for machine processing (e.g., number of bits).
| Enum Constant and Description |
|---|
BINARY_BASE64
Binary Base64
|
BINARY_HEX
Binary Hex
|
BOOLEAN
Boolean
|
BOOLEAN_FACET
Boolean Facet
|
DATETIME
Datetime
|
DECIMAL
Decimal
|
ENUMERATION
Enumeration
|
EXTENDED_STRING
Experimental
(https://www.w3.org/XML/EXI/docs/extendedString/exi-extString.html)
|
FLOAT
Float & Double
|
INTEGER
(Signed) Integer
|
LIST
List
|
NBIT_UNSIGNED_INTEGER
N-Bit UnsignedInteger
|
QNAME
QName
|
RCS_STRING
Restricted character set string
|
STRING
String & RestrictedCharSet
|
UNSIGNED_INTEGER
Unsigned Integer
|
| Modifier and Type | Method and Description |
|---|---|
static BuiltInType |
valueOf(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.
|
public static final BuiltInType BINARY_BASE64
public static final BuiltInType BINARY_HEX
public static final BuiltInType BOOLEAN
public static final BuiltInType BOOLEAN_FACET
public static final BuiltInType DECIMAL
public static final BuiltInType FLOAT
public static final BuiltInType NBIT_UNSIGNED_INTEGER
public static final BuiltInType UNSIGNED_INTEGER
public static final BuiltInType INTEGER
public static final BuiltInType DATETIME
public static final BuiltInType STRING
public static final BuiltInType RCS_STRING
public static final BuiltInType EXTENDED_STRING
public static final BuiltInType ENUMERATION
public static final BuiltInType LIST
public static final BuiltInType QNAME
public static BuiltInType[] values()
for (BuiltInType c : BuiltInType.values()) System.out.println(c);
public static BuiltInType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 Siemens AG. All rights reserved.