public static enum ArrayGet.Type extends Enum<ArrayGet.Type>
Enum Constant and Description |
---|
t_boolean |
t_byte |
t_char |
t_int |
t_object |
t_short |
t_wide |
Modifier and Type | Method and Description |
---|---|
static ArrayGet.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArrayGet.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArrayGet.Type t_int
public static final ArrayGet.Type t_wide
public static final ArrayGet.Type t_boolean
public static final ArrayGet.Type t_byte
public static final ArrayGet.Type t_char
public static final ArrayGet.Type t_object
public static final ArrayGet.Type t_short
public static ArrayGet.Type[] values()
for (ArrayGet.Type c : ArrayGet.Type.values()) System.out.println(c);
public static ArrayGet.Type 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