public static enum LimitClause.Position extends Enum<LimitClause.Position>
Enum Constant and Description |
---|
AFTER_ORDER_BY
Append the clause at the end of the statement.
|
Modifier and Type | Method and Description |
---|---|
static LimitClause.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LimitClause.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LimitClause.Position AFTER_ORDER_BY
public static LimitClause.Position[] values()
for (LimitClause.Position c : LimitClause.Position.values()) System.out.println(c);
public static LimitClause.Position 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 © 2017–2020 Pivotal Software, Inc.. All rights reserved.