public enum GeocodedWaypointStatus extends java.lang.Enum<GeocodedWaypointStatus>
GeocodedWaypoint
.Enum Constant and Description |
---|
OK
Indicates the response contains a valid result.
|
ZERO_RESULTS
Indicates no route could be found between the origin and destination.
|
Modifier and Type | Method and Description |
---|---|
static GeocodedWaypointStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeocodedWaypointStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeocodedWaypointStatus OK
public static final GeocodedWaypointStatus ZERO_RESULTS
public static GeocodedWaypointStatus[] values()
for (GeocodedWaypointStatus c : GeocodedWaypointStatus.values()) System.out.println(c);
public static GeocodedWaypointStatus 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