public static enum MapViewEventListener.ConnectivityStatus extends Enum<MapViewEventListener.ConnectivityStatus>
| Enum Constant and Description |
|---|
Authenticated
Authentication success.
|
Rejected
Authentication failure likely caused by an invalid API key.
|
Unreachable
Server unreachable likely due to network issues.
|
| Modifier and Type | Method and Description |
|---|---|
static MapViewEventListener.ConnectivityStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapViewEventListener.ConnectivityStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapViewEventListener.ConnectivityStatus Authenticated
public static final MapViewEventListener.ConnectivityStatus Rejected
public static final MapViewEventListener.ConnectivityStatus Unreachable
public static MapViewEventListener.ConnectivityStatus[] values()
for (MapViewEventListener.ConnectivityStatus c : MapViewEventListener.ConnectivityStatus.values()) System.out.println(c);
public static MapViewEventListener.ConnectivityStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null