public enum SFSortDirection extends java.lang.Enum<SFSortDirection>
| Enum Constant and Description |
|---|
Ascending |
Descending |
None |
| Modifier and Type | Method and Description |
|---|---|
static SFSortDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SFSortDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SFSortDirection None
public static final SFSortDirection Ascending
public static final SFSortDirection Descending
public static SFSortDirection[] values()
for (SFSortDirection c : SFSortDirection.values()) System.out.println(c);
public static SFSortDirection 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 null