public static enum ComparisonExpressionOperator.Operator extends Enum<ComparisonExpressionOperator.Operator>
| Enum Constant and Description |
|---|
GREATER |
GREATER_OR_EQUAL |
LOWER |
LOWER_OR_EQUAL |
OPEQ |
| Modifier and Type | Method and Description |
|---|---|
String |
getSymbol() |
static ComparisonExpressionOperator.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonExpressionOperator.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonExpressionOperator.Operator GREATER
public static final ComparisonExpressionOperator.Operator GREATER_OR_EQUAL
public static final ComparisonExpressionOperator.Operator OPEQ
public static final ComparisonExpressionOperator.Operator LOWER_OR_EQUAL
public static final ComparisonExpressionOperator.Operator LOWER
public static ComparisonExpressionOperator.Operator[] values()
for (ComparisonExpressionOperator.Operator c : ComparisonExpressionOperator.Operator.values()) System.out.println(c);
public static ComparisonExpressionOperator.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 nullpublic String getSymbol()
Copyright © 2012-2013. All Rights Reserved.