ValidatedDoubleProperty

open class ValidatedDoubleProperty(initialValue: Double, bean: Any? = null, beanName: String? = null, validation: (ValidatedProperty<Double>, Double, Double) -> Double) : ValidatedProperty<Double> , DoubleProperty

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

Constructors

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