public enum NaryRelationalOperator extends Enum<NaryRelationalOperator>
| Modifier and Type | Method and Description |
|---|---|
boolean |
apply(boolean valueExists)
Applies the operator
|
static NaryRelationalOperator |
fromString(String s) |
NaryRelationalOperator |
negate() |
String |
toString() |
static NaryRelationalOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NaryRelationalOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NaryRelationalOperator _in
public static final NaryRelationalOperator _not_in
public static NaryRelationalOperator[] values()
for (NaryRelationalOperator c : NaryRelationalOperator.values()) System.out.println(c);
public static NaryRelationalOperator 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 boolean apply(boolean valueExists)
valueExists - Whether the value of the field exists in the value
list in a query of the form { field op [value1,value2,...] }valueExistspublic String toString()
toString in class Enum<NaryRelationalOperator>public static NaryRelationalOperator fromString(String s)
public NaryRelationalOperator negate()
Copyright © 2015. All rights reserved.