MapVersion

data class MapVersion(val year: Int, val month: Int) : Parcelable, Comparable<MapVersion>

Class representing a map version.

Constructors

Link copied to clipboard
fun MapVersion(year: Int, month: Int)

Functions

Link copied to clipboard
open operator override fun compareTo(other: MapVersion): Int
Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
val month: Int

Month in which a map was generated, -1 if the property is invalid.

Link copied to clipboard
val year: Int

Year in which a map was generated, -1 if the property is invalid.