public static enum OnEngineInitListener.Error extends java.lang.Enum<OnEngineInitListener.Error>
Enum Constant and Description |
---|
BUSY
Initialization cannot be completed as the system is currently busy.
|
DEVICE_NOT_SUPPORTED
Initialization failed as the device is not supported by the SDK
|
FILE_RW_ERROR
Unable to write to or read from disk cache.
|
INCORRECT_PASSPHRASE
Incorrect pass phrase to unlock the initialize the Engine
|
MISSING_APP_CREDENTIAL
Initialization failed due to missing App ID and Token.
|
MISSING_LIBRARIES
Missing native libraries or missing dependent java libraries which cause native libraries
to not load.
|
MISSING_PERMISSION
One of the permissions required to run the SDK is missing.
|
MISSING_SERVICE
MapService cannot not be found
|
MODEL_NOT_SUPPORTED
Initialization failed as the device's model is not supported by the SDK
|
NONE
Initialization completed successfully
|
OPERATION_NOT_ALLOWED
The required permission to initialize component is missing.
|
UNKNOWN
Initialization failed for unknown reasons
|
USAGE_EXPIRED
Initialization failed as the SDK is expired
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDetails() |
java.lang.String |
getStackTrace() |
java.lang.Throwable |
getThrowable() |
static OnEngineInitListener.Error |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OnEngineInitListener.Error[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OnEngineInitListener.Error NONE
public static final OnEngineInitListener.Error USAGE_EXPIRED
public static final OnEngineInitListener.Error MODEL_NOT_SUPPORTED
public static final OnEngineInitListener.Error DEVICE_NOT_SUPPORTED
public static final OnEngineInitListener.Error UNKNOWN
public static final OnEngineInitListener.Error MISSING_APP_CREDENTIAL
<lt;meta-data android:name="com.here.android.maps.appid" android:value="APPID" />
<lt;meta-data android:name="com.here.android.maps.apptoken" android:value="TOKEN" />
public static final OnEngineInitListener.Error BUSY
public static final OnEngineInitListener.Error FILE_RW_ERROR
public static final OnEngineInitListener.Error INCORRECT_PASSPHRASE
public static final OnEngineInitListener.Error MISSING_PERMISSION
public static final OnEngineInitListener.Error MISSING_SERVICE
public static final OnEngineInitListener.Error MISSING_LIBRARIES
public static final OnEngineInitListener.Error OPERATION_NOT_ALLOWED
public static OnEngineInitListener.Error[] values()
for (OnEngineInitListener.Error c : OnEngineInitListener.Error.values()) System.out.println(c);
public static OnEngineInitListener.Error 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 nullpublic java.lang.String getDetails()
public java.lang.String getStackTrace()
public java.lang.Throwable getThrowable()