public static enum BinOp.Op extends Enum<BinOp.Op>
| Enum Constant and Description |
|---|
ADD |
BAND |
BOR |
BXOR |
CONCAT |
DIV |
EQ |
IDIV |
LE |
LT |
MOD |
MUL |
NEQ |
POW |
SHL |
SHR |
SUB |
| Modifier and Type | Method and Description |
|---|---|
static BinOp.Op |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinOp.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinOp.Op ADD
public static final BinOp.Op SUB
public static final BinOp.Op MUL
public static final BinOp.Op DIV
public static final BinOp.Op MOD
public static final BinOp.Op IDIV
public static final BinOp.Op POW
public static final BinOp.Op CONCAT
public static final BinOp.Op BAND
public static final BinOp.Op BOR
public static final BinOp.Op BXOR
public static final BinOp.Op SHL
public static final BinOp.Op SHR
public static final BinOp.Op EQ
public static final BinOp.Op NEQ
public static final BinOp.Op LT
public static final BinOp.Op LE
public static BinOp.Op[] values()
for (BinOp.Op c : BinOp.Op.values()) System.out.println(c);
public static BinOp.Op 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–2017. All rights reserved.