public enum SortDirectionType extends Enum<SortDirectionType>
Java class for SortDirectionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="SortDirectionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Ascending"/>
<enumeration value="Descending"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ASCENDING |
DESCENDING |
| Modifier and Type | Method and Description |
|---|---|
static SortDirectionType |
fromValue(String v) |
String |
value() |
static SortDirectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortDirectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortDirectionType ASCENDING
public static final SortDirectionType DESCENDING
public static SortDirectionType[] values()
for (SortDirectionType c : SortDirectionType.values()) System.out.println(c);
public static SortDirectionType 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 nullpublic String value()
public static SortDirectionType fromValue(String v)
Copyright © 2019 Apereo. All rights reserved.