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