MapVersion

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

Class representing a map version.

Constructors

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

Functions

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

Properties

month
Link copied to clipboard
val month: Int

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

year
Link copied to clipboard
val year: Int

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