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