Ranged Double Property
class RangedDoubleProperty @JvmOverloads constructor(name: String, initialValue: Double, lowerBound: Double, upperBound: Double) : DoublePropertyBase, Serializable
Content copied to clipboard
This DoubleProperty is designed to have a range for the wrapped value and to be serializable.
Parameters
name
the name of this property
initial Value
the initial value of the wrapped value, defaults to 0.0
lower Bound
the lower bound for the wrapped value to be considered acceptable, defaults to -Double.MAX_VALUE
upper Bound
the upper bound for the wrapped value to be considered acceptable, defaults to Double.MAX_VALUE
Constructors
Link copied to clipboard
fun RangedDoubleProperty(name: String, initialValue: Double = 0.0, lowerBound: Double = -Double.MAX_VALUE, upperBound: Double = Double.MAX_VALUE)
Content copied to clipboard
Based on constructor of DoubleProperty, adds the specified bounds.
Types
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun greaterThanOrEqualTo(p0: ObservableNumberValue): BooleanBinding
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun isNotEqualTo(p0: ObservableNumberValue): BooleanBinding
Content copied to clipboard
open override fun isNotEqualTo(p0: ObservableNumberValue, p1: Double): BooleanBinding
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun lessThanOrEqualTo(p0: ObservableNumberValue): BooleanBinding
Content copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard