InstantiationErrorCode (API Reference)
Enum Class InstantiationErrorCode
- All Implemented Interfaces:
Serializable,Comparable<InstantiationErrorCode>,Constable
Instantiation error.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAccess key contains illegal symbols.Access key secret contains illegal symbols.Access to the specified cache folder is deniedAccess to the specified data folder is deniedInstantiation attempt failed.Analytics service can not be createdThe cache folder for given access key id is locked by other instance of SDKNativeEngineIllegal arguments.CatalogConfigurationcontains invalid parameters.Please check SDKOptions.layerConfiguration against SDK modules configuration.Access to the specified persistent map storage folder is deniedInstantiation attempt failed because thedispose()method fromSDKNativeEnginewas called already.Instantiation attempt failed because the shared SDK engine is not instantiated. -
Method Summary
Modifier and TypeMethodDescriptionstatic InstantiationErrorCodeReturns the enum constant of this class with the specified name.static InstantiationErrorCode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ILLEGAL_ARGUMENTS
Illegal arguments.
-
FAILED
Instantiation attempt failed. Please check log for error.
-
SHARED_SDK_ENGINE_NOT_INSTANTIATED
Instantiation attempt failed because the shared SDK engine is not instantiated. Please initialise the SDK.
-
CACHE_FOLDER_ACCESS_DENIED
Access to the specified cache folder is denied
-
PERSISTENT_MAP_STORAGE_FOLDER_ACCESS_DENIED
Access to the specified persistent map storage folder is denied
-
FAILED_TO_LOCK_CACHE_FOLDER
The cache folder for given access key id is locked by other instance of SDKNativeEngine
-
FAILED_TO_CREATE_ANALYTICS_SERVICE
Analytics service can not be created
-
ACCESS_KEY_CONTAINS_ILLEGAL_SYMBOL
Access key contains illegal symbols. The below characters are not supported: A. '(single quote) B. "(double quote)
-
ACCESS_KEY_SECRET_CONTAINS_ILLEGAL_SYMBOL
Access key secret contains illegal symbols. The below characters are not supported: A. '(single quote) B. "(double quote)
-
LAYER_CONFIGURATION_MISMATCH
Please check SDKOptions.layerConfiguration against SDK modules configuration.
-
SDK_ENGINE_ALREADY_DISPOSED
Instantiation attempt failed because the
dispose()method fromSDKNativeEnginewas called already. -
INVALID_CATALOG_CONFIGURATION
CatalogConfigurationcontains invalid parameters. Check the corectness of HRNs and versions. -
DATA_FOLDER_ACCESS_DENIED
Access to the specified data folder is denied
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-