| Enum Constant and Description | 
|---|
| ALIASThe ALIAS - order by alias. | 
| CREATIONThe CREATION - order by creation date. | 
| FIRST_NAMEThe FIRST_NAME - order by first name. | 
| LAST_NAMEThe LAST_NAME - order by last name. | 
| LAST_UPDATEThe LAST_UPDATE - order by last update. | 
| MAJORThe MAJOR - order by major. | 
| MINORThe MINOR - order by minor. | 
| NAMEThe NAME - order by name. | 
| PROXIMITYThe PROXIMITY - order by proximity. | 
| TX_POWERThe TX_POWER - order by tx power. | 
| UNIQUE_IDThe UNIQUE_ID - order by unique id. | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | toString() | 
| java.lang.String | value() | 
| static OrderBy | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static OrderBy[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final OrderBy CREATION
public static final OrderBy LAST_UPDATE
public static final OrderBy NAME
public static final OrderBy UNIQUE_ID
public static final OrderBy ALIAS
public static final OrderBy PROXIMITY
public static final OrderBy MAJOR
public static final OrderBy MINOR
public static final OrderBy TX_POWER
public static final OrderBy FIRST_NAME
public static final OrderBy LAST_NAME
public static OrderBy[] values()
for (OrderBy c : OrderBy.values()) System.out.println(c);
public static OrderBy 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<OrderBy>public java.lang.String value()