public static enum BinaryOperatorNode.OperatorType extends java.lang.Enum<BinaryOperatorNode.OperatorType>
Enum Constant and Description |
---|
AND |
BITAND |
BITOR |
BITXOR |
CONCATENATE |
DIV |
DIVIDE |
EQ |
GE |
GT |
LE |
LEFT |
LEFT_SHIFT |
LIKE |
LT |
LTRIM |
MINUS |
MOD |
NE |
OR |
PLUS |
RIGHT |
RIGHT_SHIFT |
RTRIM |
TIMES |
TRIM |
Modifier and Type | Method and Description |
---|---|
static BinaryOperatorNode.OperatorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BinaryOperatorNode.OperatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryOperatorNode.OperatorType PLUS
public static final BinaryOperatorNode.OperatorType MINUS
public static final BinaryOperatorNode.OperatorType TIMES
public static final BinaryOperatorNode.OperatorType DIVIDE
public static final BinaryOperatorNode.OperatorType CONCATENATE
public static final BinaryOperatorNode.OperatorType MOD
public static final BinaryOperatorNode.OperatorType DIV
public static final BinaryOperatorNode.OperatorType EQ
public static final BinaryOperatorNode.OperatorType NE
public static final BinaryOperatorNode.OperatorType GT
public static final BinaryOperatorNode.OperatorType GE
public static final BinaryOperatorNode.OperatorType LT
public static final BinaryOperatorNode.OperatorType LE
public static final BinaryOperatorNode.OperatorType AND
public static final BinaryOperatorNode.OperatorType OR
public static final BinaryOperatorNode.OperatorType LIKE
public static final BinaryOperatorNode.OperatorType LTRIM
public static final BinaryOperatorNode.OperatorType TRIM
public static final BinaryOperatorNode.OperatorType RTRIM
public static final BinaryOperatorNode.OperatorType BITAND
public static final BinaryOperatorNode.OperatorType BITOR
public static final BinaryOperatorNode.OperatorType BITXOR
public static final BinaryOperatorNode.OperatorType LEFT_SHIFT
public static final BinaryOperatorNode.OperatorType RIGHT_SHIFT
public static final BinaryOperatorNode.OperatorType LEFT
public static final BinaryOperatorNode.OperatorType RIGHT
public static BinaryOperatorNode.OperatorType[] values()
for (BinaryOperatorNode.OperatorType c : BinaryOperatorNode.OperatorType.values()) System.out.println(c);
public static BinaryOperatorNode.OperatorType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2013. All Rights Reserved.