|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<StreetviewClient.ReturnValue>
com.google.gwt.maps.client.streetview.StreetviewClient.ReturnValue
public static enum StreetviewClient.ReturnValue
An enum equivalents for return codes returned by
StreetviewData.getCode()
.
Enum Constant Summary | |
---|---|
NO_NEARBY_PANO
|
|
SERVER_ERROR
|
|
SUCCESS
|
Method Summary | |
---|---|
static StreetviewClient.ReturnValue |
getByReturnCode(int returnCode)
Returns enum value for the passed return code or null if
return code is unknown. |
int |
getReturnCode()
Returns return code. |
static StreetviewClient.ReturnValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static StreetviewClient.ReturnValue[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final StreetviewClient.ReturnValue SUCCESS
public static final StreetviewClient.ReturnValue SERVER_ERROR
public static final StreetviewClient.ReturnValue NO_NEARBY_PANO
Method Detail |
---|
public static StreetviewClient.ReturnValue[] values()
for (StreetviewClient.ReturnValue c : StreetviewClient.ReturnValue.values()) System.out.println(c);
public static StreetviewClient.ReturnValue 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 name
java.lang.NullPointerException
- if the argument is nullpublic static StreetviewClient.ReturnValue getByReturnCode(int returnCode)
null
if
return code is unknown.
returnCode
- return code.
null
if
return code is unknown.public int getReturnCode()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |