ExternalMapDataSourceErrorCode (API Reference)
Enum Class ExternalMapDataSourceErrorCode
java.lang.Object
java.lang.Enum<ExternalMapDataSourceErrorCode>
com.here.sdk.maploader.remote.connection.ExternalMapDataSourceErrorCode
- All Implemented Interfaces:
Serializable,Comparable<ExternalMapDataSourceErrorCode>,Constable
Describes the reason for failing to configure SDKNativeEngine with external map data source.
Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors.
Related APIs may change for new releases without a deprecation process.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionError while adding catalog toDataStoreClient.While attempting to register the connection, the client was being disposedInternal error occurred.Error while checking credentials.This means that server is not launched or configuration settings is wrong.Error while attempting to register OCM AM service -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ExternalMapDataSourceErrorCode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INTERNAL_ERROR
Internal error occurred.
-
ADD_CATALOG_ERROR
Error while adding catalog to
DataStoreClient. Verify the same catalogs are added to theDataStoreServerinstance on the server side. -
INVALID_CREDENTIALS
Error while checking credentials. E.g. some field is empty but expected not empty
-
SERVICE_REGISTER_ERROR
Error while attempting to register OCM AM service
-
CLIENT_DISPOSED_ERROR
While attempting to register the connection, the client was being disposed
-
SERVER_UNAVAILABLE
This means that server is not launched or configuration settings is wrong. Make sense only on client side
-
-
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
-