public static enum QueryPlan.PredicateOperator extends Enum<QueryPlan.PredicateOperator>
| Enum Constant and Description |
|---|
EQUALS |
GREATER_THAN |
GREATER_THAN_EQUALS |
LESS_THAN |
LESS_THAN_EQUALS |
NOT_EQUALS |
| Modifier and Type | Method and Description |
|---|---|
static QueryPlan.PredicateOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryPlan.PredicateOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryPlan.PredicateOperator EQUALS
public static final QueryPlan.PredicateOperator NOT_EQUALS
public static final QueryPlan.PredicateOperator LESS_THAN
public static final QueryPlan.PredicateOperator LESS_THAN_EQUALS
public static final QueryPlan.PredicateOperator GREATER_THAN
public static final QueryPlan.PredicateOperator GREATER_THAN_EQUALS
public static QueryPlan.PredicateOperator[] values()
for (QueryPlan.PredicateOperator c : QueryPlan.PredicateOperator.values()) System.out.println(c);
public static QueryPlan.PredicateOperator 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. All rights reserved.