public static enum Param.TypeOption extends java.lang.Enum<Param.TypeOption>
| Enum Constant and Description |
|---|
_boolean |
_byte |
_char |
_double |
_float |
_int |
_long |
_object |
_short |
_string |
_String |
| Modifier and Type | Method and Description |
|---|---|
static Param.TypeOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Param.TypeOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Param.TypeOption _boolean
public static final Param.TypeOption _byte
public static final Param.TypeOption _short
public static final Param.TypeOption _int
public static final Param.TypeOption _long
public static final Param.TypeOption _float
public static final Param.TypeOption _double
public static final Param.TypeOption _char
public static final Param.TypeOption _string
public static final Param.TypeOption _String
public static final Param.TypeOption _object
public static Param.TypeOption[] values()
for (Param.TypeOption c : Param.TypeOption.values()) System.out.println(c);
public static Param.TypeOption 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