OptionalValidatedIntProperty

open class OptionalValidatedIntProperty(initialValue: Int?, bean: Any? = null, beanName: String? = null, validation: (ValidatedProperty<Int?>, Int?, Int?) -> Int?) : ValidatedProperty<Int?> , OptionalIntProperty

Boilerplate which avoids having to use generics.

Similar to ValidatedIntProperty, but the value can also be null.

Constructors

Link copied to clipboard
constructor(initialValue: Int?, bean: Any? = null, beanName: String? = null, validation: (ValidatedProperty<Int?>, Int?, Int?) -> Int?)