public enum SQLUnionOperator extends Enum<SQLUnionOperator>
| Enum Constant and Description |
|---|
DISTINCT |
EXCEPT |
INTERSECT |
MINUS |
UNION |
UNION_ALL |
| Modifier and Type | Field and Description |
|---|---|
String |
name |
String |
name_lcase |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SQLUnionOperator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLUnionOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLUnionOperator UNION
public static final SQLUnionOperator UNION_ALL
public static final SQLUnionOperator MINUS
public static final SQLUnionOperator EXCEPT
public static final SQLUnionOperator INTERSECT
public static final SQLUnionOperator DISTINCT
public static SQLUnionOperator[] values()
for (SQLUnionOperator c : SQLUnionOperator.values()) System.out.println(c);
public static SQLUnionOperator 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 nullpublic String toString()
toString in class Enum<SQLUnionOperator>Copyright © 2013–2018 Alibaba Group. All rights reserved.