public static enum BinaryExpression.Operator extends Enum<BinaryExpression.Operator>
| Enum Constant and Description |
|---|
ADD |
BINARYAND |
BINARYOR |
BINARYSHIFTLEFT |
BINARYSHIFTRIGHT |
BINARYUNSIGNEDSHIFTRIGHT |
BINARYXOR |
DIV |
EQUALS |
GREATEROREQUALS |
GREATERTHAN |
LESSTHAN |
LESSTHANOREQUALS |
MUL |
NOTEQUALS |
REMAINDER |
SUB |
| Modifier and Type | Method and Description |
|---|---|
static BinaryExpression.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryExpression.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryExpression.Operator EQUALS
public static final BinaryExpression.Operator LESSTHAN
public static final BinaryExpression.Operator GREATERTHAN
public static final BinaryExpression.Operator GREATEROREQUALS
public static final BinaryExpression.Operator LESSTHANOREQUALS
public static final BinaryExpression.Operator NOTEQUALS
public static final BinaryExpression.Operator ADD
public static final BinaryExpression.Operator SUB
public static final BinaryExpression.Operator DIV
public static final BinaryExpression.Operator MUL
public static final BinaryExpression.Operator REMAINDER
public static final BinaryExpression.Operator BINARYXOR
public static final BinaryExpression.Operator BINARYOR
public static final BinaryExpression.Operator BINARYAND
public static final BinaryExpression.Operator BINARYSHIFTLEFT
public static final BinaryExpression.Operator BINARYUNSIGNEDSHIFTRIGHT
public static final BinaryExpression.Operator BINARYSHIFTRIGHT
public static BinaryExpression.Operator[] values()
for (BinaryExpression.Operator c : BinaryExpression.Operator.values()) System.out.println(c);
public static BinaryExpression.Operator 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 © 2020 Systemprogrammierung Mirko Sertic. All rights reserved.