public static enum SQLSelectBuilder.OrderDirection extends java.lang.Enum<SQLSelectBuilder.OrderDirection>
Enum Constant and Description |
---|
ASCENDING
ascending order
|
DESCENDING
descending order
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toOrderDirectionString() |
static SQLSelectBuilder.OrderDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SQLSelectBuilder.OrderDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLSelectBuilder.OrderDirection ASCENDING
public static final SQLSelectBuilder.OrderDirection DESCENDING
public static SQLSelectBuilder.OrderDirection[] values()
for (SQLSelectBuilder.OrderDirection c : SQLSelectBuilder.OrderDirection.values()) System.out.println(c);
public static SQLSelectBuilder.OrderDirection valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toOrderDirectionString()
Copyright © 2015 Tampere University of Technology, Pori Department.