public enum UserConfigurationDictionaryObjectType extends java.lang.Enum<UserConfigurationDictionaryObjectType>
| Enum Constant and Description |
|---|
BOOLEAN
A Boolean type.
|
BYTE
A byte type.
|
BYTE_ARRAY
A byte array type.
|
DATE_TIME
A DateTime type.
|
INTEGER32
A 32-bit integer type.
|
INTEGER64
A 64-bit integer type.
|
STRING
A string type.
|
STRING_ARRAY
A string array type.
|
UNSIGNED_INTEGER32
A 32-bit unsigned integer type.
|
UNSIGNED_INTEGER64
A 64-bit unsigned integer type.
|
| Modifier and Type | Method and Description |
|---|---|
static UserConfigurationDictionaryObjectType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UserConfigurationDictionaryObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserConfigurationDictionaryObjectType DATE_TIME
public static final UserConfigurationDictionaryObjectType BOOLEAN
public static final UserConfigurationDictionaryObjectType BYTE
public static final UserConfigurationDictionaryObjectType STRING
public static final UserConfigurationDictionaryObjectType INTEGER32
public static final UserConfigurationDictionaryObjectType UNSIGNED_INTEGER32
public static final UserConfigurationDictionaryObjectType INTEGER64
public static final UserConfigurationDictionaryObjectType UNSIGNED_INTEGER64
public static final UserConfigurationDictionaryObjectType STRING_ARRAY
public static final UserConfigurationDictionaryObjectType BYTE_ARRAY
public static UserConfigurationDictionaryObjectType[] values()
for (UserConfigurationDictionaryObjectType c : UserConfigurationDictionaryObjectType.values()) System.out.println(c);
public static UserConfigurationDictionaryObjectType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null