public static enum BinaryExpression.BinaryOperator extends java.lang.Enum<BinaryExpression.BinaryOperator>
| Enum Constant and Description |
|---|
COMPLEMENT |
DIV |
EXCEPT |
INTERSECTION |
MOD |
MUL |
POW |
SUB |
SUM |
UNION |
| Modifier and Type | Method and Description |
|---|---|
static BinaryExpression.BinaryOperator |
fromString(java.lang.String text) |
java.lang.String |
getText() |
boolean |
isRightAssociative() |
static BinaryExpression.BinaryOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BinaryExpression.BinaryOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryExpression.BinaryOperator UNION
public static final BinaryExpression.BinaryOperator INTERSECTION
public static final BinaryExpression.BinaryOperator EXCEPT
public static final BinaryExpression.BinaryOperator COMPLEMENT
public static final BinaryExpression.BinaryOperator DIV
public static final BinaryExpression.BinaryOperator SUM
public static final BinaryExpression.BinaryOperator MUL
public static final BinaryExpression.BinaryOperator SUB
public static final BinaryExpression.BinaryOperator POW
public static final BinaryExpression.BinaryOperator MOD
public static BinaryExpression.BinaryOperator[] values()
for (BinaryExpression.BinaryOperator c : BinaryExpression.BinaryOperator.values()) System.out.println(c);
public static BinaryExpression.BinaryOperator 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 nullpublic java.lang.String getText()
public boolean isRightAssociative()
public static BinaryExpression.BinaryOperator fromString(java.lang.String text)