ValidatedIntProperty

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

Boilerplate which avoids having to use generics. Instead of ValidatedProperty<Int>, we can use ValidatedIntProperty.

Constructors

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