TimezoneNames

data class TimezoneNames(val timeZones: List<Timezone>) : Serializable

Constructors

Link copied to clipboard
constructor(timeZones: List<Timezone>)
constructor(vararg tz: Timezone)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
operator fun get(name: String): Timezone?
Link copied to clipboard
fun getAll(name: String): List<Timezone>

Some abbreviations collides, so we can get a list of Timezones based on abbreviation

Link copied to clipboard
operator fun plus(other: TimezoneNames): TimezoneNames