public enum VariableType extends Enum<VariableType>
| Enum Constant and Description |
|---|
BYTE_ARRAY |
CHAR_ARRAY |
DOUBLE |
DOUBLE_ARRAY |
FLOAT |
FLOAT_ARRAY |
INT |
INT_ARRAY |
LONG |
LONG_ARRAY |
OBJECT |
OBJECT_ARRAY |
SHORT_ARRAY |
| Modifier and Type | Method and Description |
|---|---|
static VariableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VariableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VariableType INT
public static final VariableType LONG
public static final VariableType FLOAT
public static final VariableType DOUBLE
public static final VariableType OBJECT
public static final VariableType BYTE_ARRAY
public static final VariableType SHORT_ARRAY
public static final VariableType CHAR_ARRAY
public static final VariableType INT_ARRAY
public static final VariableType LONG_ARRAY
public static final VariableType FLOAT_ARRAY
public static final VariableType DOUBLE_ARRAY
public static final VariableType OBJECT_ARRAY
public static VariableType[] values()
for (VariableType c : VariableType.values()) System.out.println(c);
public static VariableType 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 nullCopyright © 2015. All rights reserved.