InstalledRegionStatus (API Reference)
Package com.here.sdk.maploader
Enum Class InstalledRegionStatus
- All Implemented Interfaces:
Serializable,Comparable<InstalledRegionStatus>,Constable
Represents download status of region in the persistent map storage.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic InstalledRegionStatusReturns the enum constant of this class with the specified name.static InstalledRegionStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSTALLED
Region is ready to be used.
-
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
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
-