public static enum Overview.OrderDirection extends Enum<Overview.OrderDirection>
Enum Constant and Description |
---|
ASC
Listed objects are sorted in ascending order
|
DESC
Listed objects are sorted in descending order
|
UNDEFINED
Overview is not defined
|
Modifier and Type | Method and Description |
---|---|
static Overview.OrderDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Overview.OrderDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Overview.OrderDirection ASC
public static final Overview.OrderDirection DESC
public static final Overview.OrderDirection UNDEFINED
public static Overview.OrderDirection[] values()
for (Overview.OrderDirection c : Overview.OrderDirection.values()) System.out.println(c);
public static Overview.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 nameNullPointerException
- if the argument is nullCopyright © 2024 Gentics Software. All rights reserved.