public static enum ExpressionFactory.BinaryOperatorKind extends Enum<ExpressionFactory.BinaryOperatorKind>
Enum Constant and Description |
---|
BOOLEAN |
NUMERIC |
RELATIONAL |
Modifier and Type | Method and Description |
---|---|
static ExpressionFactory.BinaryOperatorKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionFactory.BinaryOperatorKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionFactory.BinaryOperatorKind RELATIONAL
public static final ExpressionFactory.BinaryOperatorKind NUMERIC
public static final ExpressionFactory.BinaryOperatorKind BOOLEAN
public static ExpressionFactory.BinaryOperatorKind[] values()
for (ExpressionFactory.BinaryOperatorKind c : ExpressionFactory.BinaryOperatorKind.values()) System.out.println(c);
public static ExpressionFactory.BinaryOperatorKind 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 © 2017 Oracle. All rights reserved.