public enum ConfigType extends java.lang.Enum<ConfigType>
| Enum Constant and Description |
|---|
BOOLEAN |
FLOAT |
INTEGER |
LONG |
STRING |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getConfigString()
Configuration value type text.
|
java.lang.String |
toString() |
static ConfigType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConfigType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigType LONG
public static final ConfigType INTEGER
public static final ConfigType FLOAT
public static final ConfigType BOOLEAN
public static final ConfigType STRING
public static ConfigType[] values()
for (ConfigType c : ConfigType.values()) System.out.println(c);
public static ConfigType 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 nullpublic java.lang.String getConfigString()
public java.lang.String toString()
toString in class java.lang.Enum<ConfigType>