public static enum MutableOptionKey.ValueType extends Enum<MutableOptionKey.ValueType>
| Enum Constant and Description |
|---|
BOOLEAN |
DOUBLE |
ENUM |
INT |
INT_ARRAY |
LONG |
| Modifier and Type | Method and Description |
|---|---|
static MutableOptionKey.ValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MutableOptionKey.ValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MutableOptionKey.ValueType DOUBLE
public static final MutableOptionKey.ValueType LONG
public static final MutableOptionKey.ValueType INT
public static final MutableOptionKey.ValueType BOOLEAN
public static final MutableOptionKey.ValueType INT_ARRAY
public static final MutableOptionKey.ValueType ENUM
public static MutableOptionKey.ValueType[] values()
for (MutableOptionKey.ValueType c : MutableOptionKey.ValueType.values()) System.out.println(c);
public static MutableOptionKey.ValueType 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 nullCopyright © 2021. All rights reserved.