Enum Class IconProviderError

java.lang.Object
java.lang.Enum<IconProviderError>
com.here.sdk.mapview.IconProviderError
All Implemented Interfaces:
Serializable, Comparable<IconProviderError>, Constable

public enum IconProviderError extends Enum<IconProviderError>

Error which indicates why an icon could not be retrieved.

  • Enum Constant Details

    • INVALID_STATE

      public static final IconProviderError INVALID_STATE

      The provided MapView has been destroyed.

    • ICON_NOT_FOUND

      public static final IconProviderError ICON_NOT_FOUND

      For the given combination of parameters there was no entry found in the list of icons.

    • ICON_HANDLING_FAILED

      public static final IconProviderError ICON_HANDLING_FAILED

      There was an error processing the icon.

  • Method Details

    • values

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