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