public static enum ParameterDescription.TYPES extends Enum<ParameterDescription.TYPES>
| Enum Constant and Description |
|---|
ACTION |
BOOL |
ENUM |
FLOAT |
INTEGER |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static ParameterDescription.TYPES |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterDescription.TYPES[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterDescription.TYPES FLOAT
public static final ParameterDescription.TYPES INTEGER
public static final ParameterDescription.TYPES BOOL
public static final ParameterDescription.TYPES ENUM
public static final ParameterDescription.TYPES STRING
public static final ParameterDescription.TYPES ACTION
public static ParameterDescription.TYPES[] values()
for (ParameterDescription.TYPES c : ParameterDescription.TYPES.values()) System.out.println(c);
public static ParameterDescription.TYPES 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 © 2018. All rights reserved.