public static enum Expr.BOp extends Enum<Expr.BOp>
| Enum Constant and Description |
|---|
ADD |
AND |
BITWISEAND |
BITWISEOR |
BITWISEXOR |
DIFFERENCE |
DIV |
EQ |
GT |
GTEQ |
INTERSECTION |
IS |
LEFTSHIFT |
LT |
LTEQ |
MUL |
NEQ |
OR |
RANGE |
REM |
RIGHTSHIFT |
SUB |
UNION |
XOR |
| Modifier and Type | Method and Description |
|---|---|
static Expr.BOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Expr.BOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expr.BOp AND
public static final Expr.BOp OR
public static final Expr.BOp XOR
public static final Expr.BOp ADD
public static final Expr.BOp SUB
public static final Expr.BOp MUL
public static final Expr.BOp DIV
public static final Expr.BOp REM
public static final Expr.BOp UNION
public static final Expr.BOp INTERSECTION
public static final Expr.BOp DIFFERENCE
public static final Expr.BOp EQ
public static final Expr.BOp NEQ
public static final Expr.BOp LT
public static final Expr.BOp LTEQ
public static final Expr.BOp GT
public static final Expr.BOp GTEQ
public static final Expr.BOp RANGE
public static final Expr.BOp IS
public static final Expr.BOp BITWISEAND
public static final Expr.BOp BITWISEOR
public static final Expr.BOp BITWISEXOR
public static final Expr.BOp LEFTSHIFT
public static final Expr.BOp RIGHTSHIFT
public static Expr.BOp[] values()
for (Expr.BOp c : Expr.BOp.values()) System.out.println(c);
public static Expr.BOp 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 © 2017. All rights reserved.