public static enum ParameterWrapper.ParameterType extends Enum<ParameterWrapper.ParameterType>
Enum Constant and Description |
---|
BOOLEAN
A boolean parameter (primitive type).
|
DOUBLE
A double parameter (primitive type).
|
ENUM
An Enum type parameter.
|
INTEGER
An integer parameter (primitive type).
|
LONG
A long parameter (primitive type).
|
OTHER
Other type; handle through instance listing facility.
|
STRING
A String parameter (handled as if it is a primitive type).
|
Modifier and Type | Method and Description |
---|---|
static ParameterWrapper.ParameterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterWrapper.ParameterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterWrapper.ParameterType INTEGER
public static final ParameterWrapper.ParameterType LONG
public static final ParameterWrapper.ParameterType DOUBLE
public static final ParameterWrapper.ParameterType BOOLEAN
public static final ParameterWrapper.ParameterType STRING
public static final ParameterWrapper.ParameterType ENUM
public static final ParameterWrapper.ParameterType OTHER
public static ParameterWrapper.ParameterType[] values()
for (ParameterWrapper.ParameterType c : ParameterWrapper.ParameterType.values()) System.out.println(c);
public static ParameterWrapper.ParameterType 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 null