public static enum ConfigProperty.Type extends java.lang.Enum<ConfigProperty.Type>
Enum Constant and Description |
---|
BOOLEAN
Indicates the value is a boolean.
|
BYTE
Indicates the value is a byte.
|
DOUBLE
Indicates the value is a double.
|
FLOAT
Indicates the value is a float.
|
INTEGER
Indicates the value is an integer.
|
LONG
Indicates the value is a long.
|
STRING
Indicates the value is a string.
|
Modifier and Type | Method and Description |
---|---|
static ConfigProperty.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConfigProperty.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigProperty.Type STRING
public static final ConfigProperty.Type BYTE
public static final ConfigProperty.Type INTEGER
public static final ConfigProperty.Type LONG
public static final ConfigProperty.Type FLOAT
public static final ConfigProperty.Type DOUBLE
public static final ConfigProperty.Type BOOLEAN
public static ConfigProperty.Type[] values()
for (ConfigProperty.Type c : ConfigProperty.Type.values()) System.out.println(c);
public static ConfigProperty.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