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