public static enum BinaryExpressionTree.Operator extends Enum<BinaryExpressionTree.Operator>
| Enum Constant and Description |
|---|
CONDITIONAL_AND |
CONDITIONAL_OR |
DIVIDED_BY |
EQUAL_TO |
GREATER_THAN |
GREATER_THAN_OR_EQUAL_TO |
LESS_THAN |
LESS_THAN_OR_EQUAL_TO |
MINUS |
NOT_EQUAL_TO |
PLUS |
TIMES |
| Modifier and Type | Method and Description |
|---|---|
static BinaryExpressionTree.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryExpressionTree.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryExpressionTree.Operator PLUS
public static final BinaryExpressionTree.Operator MINUS
public static final BinaryExpressionTree.Operator TIMES
public static final BinaryExpressionTree.Operator DIVIDED_BY
public static final BinaryExpressionTree.Operator EQUAL_TO
public static final BinaryExpressionTree.Operator NOT_EQUAL_TO
public static final BinaryExpressionTree.Operator GREATER_THAN
public static final BinaryExpressionTree.Operator GREATER_THAN_OR_EQUAL_TO
public static final BinaryExpressionTree.Operator LESS_THAN
public static final BinaryExpressionTree.Operator LESS_THAN_OR_EQUAL_TO
public static final BinaryExpressionTree.Operator CONDITIONAL_AND
public static final BinaryExpressionTree.Operator CONDITIONAL_OR
public static BinaryExpressionTree.Operator[] values()
for (BinaryExpressionTree.Operator c : BinaryExpressionTree.Operator.values()) System.out.println(c);
public static BinaryExpressionTree.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 © 2009–2018 SonarSource. All rights reserved.