|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<OrderDirection>
org.kuali.rice.core.api.criteria.OrderDirection
public enum OrderDirection
Defines possible directives for how a query is requested to produce count values in it's results.
| Enum Constant Summary | |
|---|---|
ASCENDING
Indicates that rows will be returned in Ascending order. |
|
DESCENDING
Indicates that rows will be returned in descending order. |
|
| Method Summary | |
|---|---|
String |
getDirection()
Returns the value of the count flag. |
static OrderDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static OrderDirection[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final OrderDirection ASCENDING
public static final OrderDirection DESCENDING
| Method Detail |
|---|
public static OrderDirection[] values()
for (OrderDirection c : OrderDirection.values()) System.out.println(c);
public static OrderDirection valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String getDirection()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||