public enum ConfigValueType extends Enum<ConfigValueType>
Enum Constant and Description |
---|
BOOLEAN |
LIST |
NULL |
NUMBER |
OBJECT |
STRING |
Modifier and Type | Method and Description |
---|---|
static ConfigValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigValueType OBJECT
public static final ConfigValueType LIST
public static final ConfigValueType NUMBER
public static final ConfigValueType BOOLEAN
public static final ConfigValueType NULL
public static final ConfigValueType STRING
public static ConfigValueType[] values()
for (ConfigValueType c : ConfigValueType.values()) System.out.println(c);
public static ConfigValueType 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 null