public static enum Parameter.Type extends java.lang.Enum<Parameter.Type>
| Enum Constant and Description |
|---|
BOOLEAN |
DATE |
DOUBLE |
FLOAT |
INTEGER |
INTEGER_ARRAY |
LONG |
LONG_ARRAY |
STRING |
STRING_ARRAY |
TIME_RANGE |
| Modifier and Type | Method and Description |
|---|---|
static Parameter.Type |
create(java.lang.String value) |
java.lang.String |
getValue() |
java.lang.String |
toString() |
static Parameter.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Parameter.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parameter.Type BOOLEAN
public static final Parameter.Type DATE
public static final Parameter.Type DOUBLE
public static final Parameter.Type FLOAT
public static final Parameter.Type INTEGER
public static final Parameter.Type INTEGER_ARRAY
public static final Parameter.Type LONG
public static final Parameter.Type LONG_ARRAY
public static final Parameter.Type STRING
public static final Parameter.Type STRING_ARRAY
public static final Parameter.Type TIME_RANGE
public static Parameter.Type[] values()
for (Parameter.Type c : Parameter.Type.values()) System.out.println(c);
public static Parameter.Type 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 nullpublic static Parameter.Type create(java.lang.String value)
public java.lang.String getValue()
public java.lang.String toString()
toString in class java.lang.Enum<Parameter.Type>