public static enum ContactQuery.SortOrder extends Enum<ContactQuery.SortOrder>
NONE.| Enum Constant and Description |
|---|
ASCENDING
Ascending.
|
DESCENDING
Descending.
|
NONE
None.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toValue()
Returns the value used in the URL.
|
static ContactQuery.SortOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContactQuery.SortOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContactQuery.SortOrder ASCENDING
public static final ContactQuery.SortOrder DESCENDING
public static final ContactQuery.SortOrder NONE
public static ContactQuery.SortOrder[] values()
for (ContactQuery.SortOrder c : ContactQuery.SortOrder.values()) System.out.println(c);
public static ContactQuery.SortOrder 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 toValue()
Copyright © 2012. All Rights Reserved.