public enum ExpressionType extends Enum<ExpressionType>
| Enum Constant and Description |
|---|
All |
And |
Between |
Eq |
Exists |
Gt |
Gte |
HasChild |
HasParent |
Ids |
In |
Json |
Lt |
Lte |
Missing |
Ne |
Nested |
Not |
Or |
Prefix |
Regex |
Text |
Type |
| Modifier and Type | Method and Description |
|---|---|
static ExpressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionType All
public static final ExpressionType Ids
public static final ExpressionType Eq
public static final ExpressionType Gte
public static final ExpressionType Gt
public static final ExpressionType Lte
public static final ExpressionType Lt
public static final ExpressionType Prefix
public static final ExpressionType Ne
public static final ExpressionType In
public static final ExpressionType Between
public static final ExpressionType Text
public static final ExpressionType Regex
public static final ExpressionType Exists
public static final ExpressionType Missing
public static final ExpressionType Type
public static final ExpressionType Json
public static final ExpressionType And
public static final ExpressionType Or
public static final ExpressionType Not
public static final ExpressionType Nested
public static final ExpressionType HasParent
public static final ExpressionType HasChild
public static ExpressionType[] values()
for (ExpressionType c : ExpressionType.values()) System.out.println(c);
public static ExpressionType 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 © 2012–2015 Polyglotted IO. All rights reserved.