public static enum SelectUnion.UnionType extends Enum<SelectUnion.UnionType>
Enum Constant and Description |
---|
EXCEPT
The type of an EXCEPT statement.
|
INTERSECT
The type of an INTERSECT statement.
|
UNION
The type of a UNION statement.
|
UNION_ALL
The type of a UNION ALL statement.
|
Modifier and Type | Method and Description |
---|---|
static SelectUnion.UnionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SelectUnion.UnionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectUnion.UnionType UNION
public static final SelectUnion.UnionType UNION_ALL
public static final SelectUnion.UnionType EXCEPT
public static final SelectUnion.UnionType INTERSECT
public static SelectUnion.UnionType[] values()
for (SelectUnion.UnionType c : SelectUnion.UnionType.values()) System.out.println(c);
public static SelectUnion.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 © 2020 JBoss by Red Hat. All rights reserved.