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