RangedIntegerProperty

open fun RangedIntegerProperty(name: String, initialValue: Int, lowerBound: Int, upperBound: Int)

Based on constructor of IntegerPropertyBase, adds the specified bounds.

Parameters

name

the name of this IntegerProperty

initialValue

the initial value of the wrapped value

lowerBound

the lower bound for the wrapped value to be considered acceptable

upperBound

the upper bound for the wrapped value to be considered acceptable


open fun RangedIntegerProperty(name: String, lowerBound: Int, upperBound: Int)

Based on constructor of IntegerPropertyBase, adds the specified bounds.

Initial value is set to 0.

Parameters

name

the name of this IntegerProperty

lowerBound

the lower bound for the wrapped value to be considered acceptable

upperBound

the upper bound for the wrapped value to be considered acceptable


open fun RangedIntegerProperty(initialValue: Int, lowerBound: Int, upperBound: Int)

Based on constructor of IntegerPropertyBase, adds the specified bounds.

Parameters

initialValue

the initial value of the wrapped value

lowerBound

the lower bound for the wrapped value to be considered acceptable

upperBound

the upper bound for the wrapped value to be considered acceptable


open fun RangedIntegerProperty(lowerBound: Int, upperBound: Int)

Based on constructor of IntegerPropertyBase, adds the specified bounds.

Initial value is set to 0.

Parameters

lowerBound

the lower bound for the wrapped value to be considered acceptable

upperBound

the upper bound for the wrapped value to be considered acceptable


open fun RangedIntegerProperty(name: String, initialValue: Int)

The constructor of IntegerPropertyBase.

Bounds are set to MAX_VALUE and MIN_VALUE.

Parameters

name

the name of this IntegerProperty

initialValue

the initial value of the wrapped value


open fun RangedIntegerProperty(name: String)

The constructor of IntegerPropertyBase.

Initial value is set to 0.

Bounds are set to MAX_VALUE and MIN_VALUE.

Parameters

name

the name of this IntegerProperty


open fun RangedIntegerProperty(initialValue: Int)

The constructor of IntegerPropertyBase.

Bounds are set to MAX_VALUE and MIN_VALUE.

Parameters

initialValue

the initial value of the wrapped value


open fun RangedIntegerProperty()

The constructor of IntegerPropertyBase.

Initial value is set to 0.

Bounds are set to MAX_VALUE and MIN_VALUE.