public enum ScimSortOrder extends Enum<ScimSortOrder>
sortBy parameter as per 3.4.2.3. Sorting.| Modifier and Type | Method and Description |
|---|---|
static ScimSortOrder |
fromString(String value) |
String |
value() |
static ScimSortOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScimSortOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScimSortOrder ASC
public static final ScimSortOrder DESC
public static ScimSortOrder[] values()
for (ScimSortOrder c : ScimSortOrder.values()) System.out.println(c);
public static ScimSortOrder 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 static ScimSortOrder fromString(String value)
public String value()
Copyright © 2016 Atlassian. All rights reserved.