public enum MdmAppConfigKeyType extends java.lang.Enum<MdmAppConfigKeyType>
| Enum Constant and Description |
|---|
BOOLEAN_TYPE
boolean Type
|
INTEGER_TYPE
integer Type
|
REAL_TYPE
real Type
|
STRING_TYPE
string Type
|
TOKEN_TYPE
token Type
|
UNEXPECTED_VALUE
For MdmAppConfigKeyType values that were not expected from the service
|
| Modifier and Type | Method and Description |
|---|---|
static MdmAppConfigKeyType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MdmAppConfigKeyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MdmAppConfigKeyType STRING_TYPE
public static final MdmAppConfigKeyType INTEGER_TYPE
public static final MdmAppConfigKeyType REAL_TYPE
public static final MdmAppConfigKeyType BOOLEAN_TYPE
public static final MdmAppConfigKeyType TOKEN_TYPE
public static final MdmAppConfigKeyType UNEXPECTED_VALUE
public static MdmAppConfigKeyType[] values()
for (MdmAppConfigKeyType c : MdmAppConfigKeyType.values()) System.out.println(c);
public static MdmAppConfigKeyType 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