public enum Opcode extends Enum<Opcode>
Enum Constant and Description |
---|
AND |
ATTR |
EQ |
GT |
GTE |
IN |
LITERAL |
LT |
LTE |
NEQ |
OR |
Modifier and Type | Method and Description |
---|---|
static Opcode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Opcode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Opcode AND
public static final Opcode OR
public static final Opcode EQ
public static final Opcode NEQ
public static final Opcode LT
public static final Opcode GT
public static final Opcode LTE
public static final Opcode GTE
public static final Opcode IN
public static final Opcode ATTR
public static final Opcode LITERAL
public static Opcode[] values()
for (Opcode c : Opcode.values()) System.out.println(c);
public static Opcode 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 © 2016 Oracle Corporation. All rights reserved.