public enum SetOperationType extends Enum<SetOperationType>
Enum Constant and Description |
---|
EXCEPT
The EXCEPT set operation.
|
EXCEPT_ALL
The EXCEPT ALL set operation.
|
INTERSECT
The INTERSECT set operation.
|
INTERSECT_ALL
The INTERSECT ALL set operation.
|
UNION
The UNION set operation.
|
UNION_ALL
The UNION ALL set operation.
|
Modifier and Type | Method and Description |
---|---|
static SetOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SetOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetOperationType UNION
public static final SetOperationType UNION_ALL
public static final SetOperationType INTERSECT
public static final SetOperationType INTERSECT_ALL
public static final SetOperationType EXCEPT
public static final SetOperationType EXCEPT_ALL
public static SetOperationType[] values()
for (SetOperationType c : SetOperationType.values()) System.out.println(c);
public static SetOperationType 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 © 2014–2018 Blazebit. All rights reserved.