public enum ConfOptionType extends Enum<ConfOptionType>
Enum Constant and Description |
---|
BOOLEAN
boolean
|
CLASS
class
|
ENUM
enum
|
FLOAT
float
|
INTEGER
integer
|
LONG
long
|
STRING
string
|
Modifier and Type | Method and Description |
---|---|
static ConfOptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfOptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfOptionType BOOLEAN
public static final ConfOptionType CLASS
public static final ConfOptionType ENUM
public static final ConfOptionType INTEGER
public static final ConfOptionType FLOAT
public static final ConfOptionType LONG
public static final ConfOptionType STRING
public static ConfOptionType[] values()
for (ConfOptionType c : ConfOptionType.values()) System.out.println(c);
public static ConfOptionType 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 © 2011-2020 The Apache Software Foundation. All Rights Reserved.