public enum ConfigurationValueType extends Enum<ConfigurationValueType>
| Enum Constant and Description |
|---|
BOOLEAN |
DOUBLE |
FLOAT |
INTEGER |
LIST |
LONG |
MAP |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static ConfigurationValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigurationValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigurationValueType STRING
public static final ConfigurationValueType INTEGER
public static final ConfigurationValueType LONG
public static final ConfigurationValueType DOUBLE
public static final ConfigurationValueType FLOAT
public static final ConfigurationValueType BOOLEAN
public static final ConfigurationValueType LIST
public static final ConfigurationValueType MAP
public static ConfigurationValueType[] values()
for (ConfigurationValueType c : ConfigurationValueType.values()) System.out.println(c);
public static ConfigurationValueType 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 © 2015–2020. All rights reserved.