PropertyLocalDate

@Serializable
@SerialName(value = "localDate")
data class PropertyLocalDate(val name: String, val value: LocalDate, val description: String? = null, val fixedValues: Set<LocalDate> = emptySet(), val readOnly: Boolean = false) : Property<LocalDate> (source)

Property implementation for date only values.

Constructors

Link copied to clipboard
constructor(name: String, value: LocalDate, description: String? = null, fixedValues: Set<LocalDate> = emptySet(), readOnly: Boolean = false)

Properties

Link copied to clipboard
open override val description: String?

Optional description

Link copied to clipboard
open override val fixedValues: Set<LocalDate>

Set of allowed local date values (empty if no restrictions)

Link copied to clipboard

Checks if this property has fixed values defined.

Link copied to clipboard
open override val name: String

Unique name of the property

Link copied to clipboard
open override val readOnly: Boolean

Whether the property is read-only

Link copied to clipboard
open override val value: LocalDate

Current local date value