public enum CAstBinaryOp extends Enum<CAstBinaryOp> implements IBinaryOpInstruction.IOperator
Enum Constant and Description |
---|
CONCAT |
EQ |
GE |
GT |
LE |
LT |
NE |
STRICT_EQ |
STRICT_NE |
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static CAstBinaryOp |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CAstBinaryOp[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CAstBinaryOp CONCAT
public static final CAstBinaryOp EQ
public static final CAstBinaryOp NE
public static final CAstBinaryOp LT
public static final CAstBinaryOp GE
public static final CAstBinaryOp GT
public static final CAstBinaryOp LE
public static final CAstBinaryOp STRICT_EQ
public static final CAstBinaryOp STRICT_NE
public static CAstBinaryOp[] values()
for (CAstBinaryOp c : CAstBinaryOp.values()) System.out.println(c);
public static CAstBinaryOp 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 nullpublic String toString()
toString
in class Enum<CAstBinaryOp>