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