WeekSettings

data class WeekSettings(firstDayOfWeek: DayOfWeek, minimumDaysInFirstWeek: Int)

Week-related calendar settings.

Constructors

WeekSettings
Link copied to clipboard
common
fun WeekSettings(firstDayOfWeek: DayOfWeek, minimumDaysInFirstWeek: Int)

Types

Companion
Link copied to clipboard
common
object Companion

Functions

component1
Link copied to clipboard
common
operator fun component1(): DayOfWeek
component2
Link copied to clipboard
common
operator fun component2(): Int
copy
Link copied to clipboard
common
fun copy(firstDayOfWeek: DayOfWeek, minimumDaysInFirstWeek: Int): WeekSettings
equals
Link copied to clipboard
common
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open override fun hashCode(): Int
toString
Link copied to clipboard
common
open override fun toString(): String

Properties

firstDayOfWeek
Link copied to clipboard
common
val firstDayOfWeek: DayOfWeek
The first day of the week.
minimumDaysInFirstWeek
Link copied to clipboard
common
val minimumDaysInFirstWeek: Int
The minimum number of days required in the first week of the year.