public static enum IndexExpression.Operator extends java.lang.Enum<IndexExpression.Operator>
Enum Constant and Description |
---|
CONTAINS |
CONTAINS_KEY |
EQ |
GT |
GTE |
LT |
LTE |
Modifier and Type | Method and Description |
---|---|
boolean |
allowsIndexQuery() |
static IndexExpression.Operator |
findByOrdinal(int ordinal) |
static IndexExpression.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndexExpression.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexExpression.Operator EQ
public static final IndexExpression.Operator GTE
public static final IndexExpression.Operator GT
public static final IndexExpression.Operator LTE
public static final IndexExpression.Operator LT
public static final IndexExpression.Operator CONTAINS
public static final IndexExpression.Operator CONTAINS_KEY
public static IndexExpression.Operator[] values()
for (IndexExpression.Operator c : IndexExpression.Operator.values()) System.out.println(c);
public static IndexExpression.Operator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static IndexExpression.Operator findByOrdinal(int ordinal)
public boolean allowsIndexQuery()
Copyright © 2014 The Apache Software Foundation