public enum StreetViewStatus extends java.lang.Enum<StreetViewStatus>
Enum Constant and Description |
---|
OK
The request was successful.
|
UNKNOWN_ERROR
The request could not be successfully processed, yet the exact reason for failure is unknown.
|
ZERO_RESULTS
There are no nearby panoramas.
|
Modifier and Type | Method and Description |
---|---|
static StreetViewStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StreetViewStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreetViewStatus OK
public static final StreetViewStatus UNKNOWN_ERROR
public static final StreetViewStatus ZERO_RESULTS
public static StreetViewStatus[] values()
for (StreetViewStatus c : StreetViewStatus.values()) System.out.println(c);
public static StreetViewStatus 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