public static enum ASTBinaryExpr.BinOp extends Enum<ASTBinaryExpr.BinOp>
Enum Constant and Description |
---|
ADD |
AND |
DIV |
EQ |
GE |
GT |
INVALID |
LE |
LT |
MOD |
MUL |
NE |
OR |
SUB |
Modifier and Type | Method and Description |
---|---|
static ASTBinaryExpr.BinOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ASTBinaryExpr.BinOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ASTBinaryExpr.BinOp INVALID
public static final ASTBinaryExpr.BinOp OR
public static final ASTBinaryExpr.BinOp AND
public static final ASTBinaryExpr.BinOp EQ
public static final ASTBinaryExpr.BinOp NE
public static final ASTBinaryExpr.BinOp LT
public static final ASTBinaryExpr.BinOp GT
public static final ASTBinaryExpr.BinOp LE
public static final ASTBinaryExpr.BinOp GE
public static final ASTBinaryExpr.BinOp ADD
public static final ASTBinaryExpr.BinOp SUB
public static final ASTBinaryExpr.BinOp MUL
public static final ASTBinaryExpr.BinOp DIV
public static final ASTBinaryExpr.BinOp MOD
public static ASTBinaryExpr.BinOp[] values()
for (ASTBinaryExpr.BinOp c : ASTBinaryExpr.BinOp.values()) System.out.println(c);
public static ASTBinaryExpr.BinOp 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.