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