public static enum SetOp.OpType extends Enum<SetOp.OpType>
| Enum Constant and Description |
|---|
EXCEPT |
EXCEPT_ALL |
INTERSECT |
INTERSECT_ALL |
UNION |
UNION_ALL |
| Modifier and Type | Method and Description |
|---|---|
static SetOp.OpType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SetOp.OpType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetOp.OpType UNION
public static final SetOp.OpType UNION_ALL
public static final SetOp.OpType INTERSECT
public static final SetOp.OpType INTERSECT_ALL
public static final SetOp.OpType EXCEPT
public static final SetOp.OpType EXCEPT_ALL
public static SetOp.OpType[] values()
for (SetOp.OpType c : SetOp.OpType.values()) System.out.println(c);
public static SetOp.OpType 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 null