public static enum Relation.Type extends java.lang.Enum<Relation.Type>
Enum Constant and Description |
---|
CONTAINS |
CONTAINS_KEY |
EQ |
GT |
GTE |
IN |
LT |
LTE |
NEQ |
Modifier and Type | Method and Description |
---|---|
boolean |
allowsIndexQuery() |
java.lang.String |
toString() |
static Relation.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Relation.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Relation.Type EQ
public static final Relation.Type LT
public static final Relation.Type LTE
public static final Relation.Type GTE
public static final Relation.Type GT
public static final Relation.Type IN
public static final Relation.Type CONTAINS
public static final Relation.Type CONTAINS_KEY
public static final Relation.Type NEQ
public static Relation.Type[] values()
for (Relation.Type c : Relation.Type.values()) System.out.println(c);
public static Relation.Type 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 boolean allowsIndexQuery()
public java.lang.String toString()
toString
in class java.lang.Enum<Relation.Type>
Copyright © 2014 The Apache Software Foundation