public static enum ComparisonExpression.Operator extends Enum<ComparisonExpression.Operator>
| Enum Constant and Description |
|---|
EQUAL |
GREATER_THAN |
GREATER_THAN_OR_EQUAL |
IS_DISTINCT_FROM |
LESS_THAN |
LESS_THAN_OR_EQUAL |
NOT_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
ComparisonExpression.Operator |
flip() |
String |
getValue() |
ComparisonExpression.Operator |
negate() |
static ComparisonExpression.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonExpression.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonExpression.Operator EQUAL
public static final ComparisonExpression.Operator NOT_EQUAL
public static final ComparisonExpression.Operator LESS_THAN
public static final ComparisonExpression.Operator LESS_THAN_OR_EQUAL
public static final ComparisonExpression.Operator GREATER_THAN
public static final ComparisonExpression.Operator GREATER_THAN_OR_EQUAL
public static final ComparisonExpression.Operator IS_DISTINCT_FROM
public static ComparisonExpression.Operator[] values()
for (ComparisonExpression.Operator c : ComparisonExpression.Operator.values()) System.out.println(c);
public static ComparisonExpression.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 getValue()
public ComparisonExpression.Operator flip()
public ComparisonExpression.Operator negate()
Copyright © 2012–2023. All rights reserved.