LocalDateFields

data class LocalDateFields(    val year: Int,     val month: Int,     val day: Int) : ComponentValue

Represents local date which has 'YYYY-MM-DD` representation in components See platform implementation for details

Parameters

year

Full year

month

Month: 1 - 12

day

Day: 1 - 31

Constructors

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

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun toComponentValue(): String

Returns component representation 'YYYY-MM-DD`

Properties

Link copied to clipboard
val day: Int
Link copied to clipboard
val month: Int
Link copied to clipboard
val year: Int

Extensions

Link copied to clipboard
fun LocalDateFields.toLocalDate(): LocalDate

Export to LocalDate