public enum OperandType extends Enum<OperandType>
| Enum Constant and Description |
|---|
ARRAY |
BOOLEAN |
BYTE |
CHARACTER |
DATE |
DOUBLE |
ENUM |
FLOAT |
INTEGER |
LONG |
NULL |
SHORT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static OperandType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperandType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperandType ARRAY
public static final OperandType BOOLEAN
public static final OperandType BYTE
public static final OperandType CHARACTER
public static final OperandType DATE
public static final OperandType DOUBLE
public static final OperandType ENUM
public static final OperandType FLOAT
public static final OperandType INTEGER
public static final OperandType LONG
public static final OperandType NULL
public static final OperandType SHORT
public static final OperandType STRING
public static OperandType[] values()
for (OperandType c : OperandType.values()) System.out.println(c);
public static OperandType 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 © 2019. All rights reserved.