Enum Class ExternalMapDataSourceErrorCode

java.lang.Object
java.lang.Enum<ExternalMapDataSourceErrorCode>
com.here.sdk.maploader.remote.connection.ExternalMapDataSourceErrorCode
All Implemented Interfaces:
Serializable, Comparable<ExternalMapDataSourceErrorCode>, Constable

public enum ExternalMapDataSourceErrorCode extends Enum<ExternalMapDataSourceErrorCode>

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.

  • Enum Constant Details

    • INTERNAL_ERROR

      public static final ExternalMapDataSourceErrorCode INTERNAL_ERROR

      Internal error occurred.

    • ADD_CATALOG_ERROR

      public static final ExternalMapDataSourceErrorCode ADD_CATALOG_ERROR

      Error while adding catalog to DataStoreClient. Verify the same catalogs are added to the DataStoreServer instance on the server side.

    • INVALID_CREDENTIALS

      public static final ExternalMapDataSourceErrorCode INVALID_CREDENTIALS

      Error while checking credentials. E.g. some field is empty but expected not empty

    • SERVICE_REGISTER_ERROR

      public static final ExternalMapDataSourceErrorCode SERVICE_REGISTER_ERROR

      Error while attempting to register OCM AM service

    • CLIENT_DISPOSED_ERROR

      public static final ExternalMapDataSourceErrorCode CLIENT_DISPOSED_ERROR

      While attempting to register the connection, the client was being disposed

    • SERVER_UNAVAILABLE

      public static final ExternalMapDataSourceErrorCode SERVER_UNAVAILABLE

      This means that server is not launched or configuration settings is wrong. Make sense only on client side

  • Method Details

    • values

      public static ExternalMapDataSourceErrorCode[] 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

      public static ExternalMapDataSourceErrorCode valueOf(String name)
      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 name
      NullPointerException - if the argument is null