public static enum SetQuery.Operation extends Enum<SetQuery.Operation>
Enum Constant and Description |
---|
EXCEPT
Represents set difference of two queries
|
INTERSECT
Represents intersection of two queries
|
UNION
Represents UNION of two queries
|
Modifier and Type | Method and Description |
---|---|
static SetQuery.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SetQuery.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetQuery.Operation UNION
public static final SetQuery.Operation INTERSECT
public static final SetQuery.Operation EXCEPT
public static SetQuery.Operation[] values()
for (SetQuery.Operation c : SetQuery.Operation.values()) System.out.println(c);
public static SetQuery.Operation 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 © 2020. All rights reserved.