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