public enum UnionType extends Enum<UnionType>
| Enum Constant and Description |
|---|
EXCEPT_ALL |
EXCEPT_DISTINCT |
INTERSECT_ALL |
INTERSECT_DISTINCT |
MINUS_ALL |
MINUS_DISTINCT |
UNION_ALL |
UNION_DISTINCT |
| Modifier and Type | Method and Description |
|---|---|
static UnionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnionType UNION_ALL
public static final UnionType UNION_DISTINCT
public static final UnionType INTERSECT_ALL
public static final UnionType INTERSECT_DISTINCT
public static final UnionType EXCEPT_ALL
public static final UnionType EXCEPT_DISTINCT
public static final UnionType MINUS_ALL
public static final UnionType MINUS_DISTINCT
public static UnionType[] values()
for (UnionType c : UnionType.values()) System.out.println(c);
public static UnionType 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 © 2022 The Apache Software Foundation. All rights reserved.