public enum ComparisonOperator extends Enum<ComparisonOperator>
Predicate
.Enum Constant and Description |
---|
EQ
The equality
= operator. |
GT
The "greater than"
> operator. |
GTE
The "greater than or equal"
>= operator. |
LIKE
The
LIKE operator. |
LT
The "less than"
< operator. |
LTE
The "less than or equal"
<= operator. |
Modifier and Type | Method and Description |
---|---|
static ComparisonOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComparisonOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComparisonOperator EQ
=
operator.public static final ComparisonOperator LIKE
LIKE
operator.public static final ComparisonOperator LT
<
operator.public static final ComparisonOperator LTE
<=
operator.public static final ComparisonOperator GT
>
operator.public static final ComparisonOperator GTE
>=
operator.public static ComparisonOperator[] values()
for (ComparisonOperator c : ComparisonOperator.values()) System.out.println(c);
public static ComparisonOperator 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 © 2010 - 2018 edorasware ag. All Rights Reserved.