InstalledRegion (API Reference)
Package com.here.sdk.maploader
Class InstalledRegion
java.lang.Object
com.here.sdk.maploader.InstalledRegion
Represents a region, from persistent map storage.
-
Field Summary
FieldsModifier and TypeFieldDescriptionParent region identifier.Unique identifier specifying a region.longRegion size on disk in bytes.Status of the region in the persistent map storage. -
Constructor Summary
ConstructorsConstructorDescriptionInstalledRegion(RegionId regionId, RegionId parentId, long sizeOnDiskInBytes, InstalledRegionStatus status) Creates a new instance. -
Method Summary
-
Field Details
-
regionId
Unique identifier specifying a region.
-
parentId
Parent region identifier. Continents have a parent_id of 0.
-
sizeOnDiskInBytes
public long sizeOnDiskInBytesRegion size on disk in bytes.
-
status
Status of the region in the persistent map storage.
-
-
Constructor Details
-
InstalledRegion
public InstalledRegion(@NonNull RegionId regionId, @NonNull RegionId parentId, long sizeOnDiskInBytes, @NonNull InstalledRegionStatus status) Creates a new instance.
- Parameters:
regionId-Unique identifier specifying a region.
parentId-Parent region identifier. Continents have a parent_id of 0.
sizeOnDiskInBytes-Region size on disk in bytes.
status-Status of the region in the persistent map storage.
-
-
Method Details