Enum Class InstalledRegionStatus

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

public enum InstalledRegionStatus extends Enum<InstalledRegionStatus>

Represents download status of region in the persistent map storage.

  • Enum Constant Details

    • INSTALLED

      public static final InstalledRegionStatus INSTALLED

      Region is ready to be used.

    • PENDING

      public static final InstalledRegionStatus PENDING

      Download is not finished yet. Either try to download this region again and, eventually, the progress will continue where it was left off - or you can cancel this download or delete this region. The following reasons can lead to this status: An ongoing or paused download or an abrupt end, for example, when the app was closed. Ongoing or paused downloads can be resumed with the MapDownloaderTask.

  • Method Details

    • values

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