static enum SqlTupleReader.WhichSelect extends Enum<SqlTupleReader.WhichSelect>
Enum Constant and Description |
---|
LAST
Select statement is the last in a UNION.
|
NOT_LAST
Select statement belongs to a UNION, but is not the last.
|
ONLY
Select statement does not belong to a union.
|
Modifier and Type | Method and Description |
---|---|
static SqlTupleReader.WhichSelect |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlTupleReader.WhichSelect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlTupleReader.WhichSelect ONLY
public static final SqlTupleReader.WhichSelect NOT_LAST
public static final SqlTupleReader.WhichSelect LAST
public static SqlTupleReader.WhichSelect[] values()
for (SqlTupleReader.WhichSelect c : SqlTupleReader.WhichSelect.values()) System.out.println(c);
public static SqlTupleReader.WhichSelect 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