YearMonth

data class YearMonth(val year: Int, val month: Int)

A year and month without a day or time zone.

Constructors

Link copied to clipboard
constructor(year: Int, month: Int)

Types

Link copied to clipboard
object Companion

Properties

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

Functions

Link copied to clipboard
fun atDay(day: Int): LocalDate
Link copied to clipboard
fun atEndOfMonth(): LocalDate
Link copied to clipboard
fun atStartOfMonth(): LocalDate
Link copied to clipboard
Link copied to clipboard
fun minusMonths(months: Int): YearMonth
Link copied to clipboard
fun plusMonths(months: Int): YearMonth
Link copied to clipboard
open override fun toString(): String