public static enum SetOperation.Operator extends java.lang.Enum<SetOperation.Operator>
| Enum Constant and Description | 
|---|
BETWEEN  | 
EQUALS_ANY  | 
IN  | 
NOT_BETWEEN  | 
NOT_IN  | 
| Modifier and Type | Method and Description | 
|---|---|
java.lang.String | 
getSQLText()
Gets the operator's text, as used in SQL. 
 | 
static SetOperation.Operator | 
migrate(java.lang.String old)
Migration code, internal use only. 
 | 
static SetOperation.Operator | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static SetOperation.Operator[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SetOperation.Operator BETWEEN
public static final SetOperation.Operator NOT_BETWEEN
public static final SetOperation.Operator IN
public static final SetOperation.Operator EQUALS_ANY
public static final SetOperation.Operator NOT_IN
public static SetOperation.Operator[] values()
for (SetOperation.Operator c : SetOperation.Operator.values()) System.out.println(c);
public static SetOperation.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 java.lang.String getSQLText()
public static SetOperation.Operator migrate(java.lang.String old)