public static enum BetweenPredicate.BetweenPredicateOperator extends Enum<BetweenPredicate.BetweenPredicateOperator> implements PredicateOperator
BetweenPredicate operator.| Enum Constant and Description |
|---|
BETWEEN |
NOT_BETWEEN |
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Returns the predicate operator symbol.
|
static BetweenPredicate.BetweenPredicateOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BetweenPredicate.BetweenPredicateOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BetweenPredicate.BetweenPredicateOperator BETWEEN
public static final BetweenPredicate.BetweenPredicateOperator NOT_BETWEEN
public static BetweenPredicate.BetweenPredicateOperator[] values()
for (BetweenPredicate.BetweenPredicateOperator c : BetweenPredicate.BetweenPredicateOperator.values()) System.out.println(c);
public static BetweenPredicate.BetweenPredicateOperator 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 toString()
PredicateOperatortoString in interface PredicateOperatortoString in class Enum<BetweenPredicate.BetweenPredicateOperator>Copyright © 2018–2021. All rights reserved.