java.lang.Object
javafx.beans.binding.NumberExpressionBase
javafx.beans.binding.IntegerExpression
- All Implemented Interfaces:
NumberExpression
,Observable
,ObservableIntegerValue
,ObservableNumberValue
,ObservableValue<Number>
- Direct Known Subclasses:
IntegerBinding
,ReadOnlyIntegerProperty
public abstract class IntegerExpression extends NumberExpressionBase implements ObservableIntegerValue
IntegerExpression
is an
ObservableIntegerValue
plus additional convenience
methods to generate bindings in a fluent style.
A concrete sub-class of IntegerExpression
has to implement the method
ObservableIntegerValue.get()
, which provides the
actual value of this expression.
- Since:
- JavaFX 2.0
-
Constructor Summary
Constructors Constructor Description IntegerExpression()
Creates a defaultIntegerExpression
. -
Method Summary
Modifier and Type Method Description DoubleBinding
add(double other)
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.FloatBinding
add(float other)
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.IntegerBinding
add(int other)
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.LongBinding
add(long other)
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.ObjectExpression<Integer>
asObject()
Creates anObjectExpression
that holds the value of thisIntegerExpression
.DoubleBinding
divide(double other)
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.FloatBinding
divide(float other)
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.IntegerBinding
divide(int other)
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.LongBinding
divide(long other)
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.static IntegerExpression
integerExpression(ObservableIntegerValue value)
Returns aIntegerExpression
that wraps aObservableIntegerValue
.static <T extends Number>
IntegerExpressionintegerExpression(ObservableValue<T> value)
Returns anIntegerExpression
that wraps anObservableValue
.DoubleBinding
multiply(double other)
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.FloatBinding
multiply(float other)
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.IntegerBinding
multiply(int other)
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.LongBinding
multiply(long other)
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.IntegerBinding
negate()
Creates a newNumberBinding
that calculates the negation ofNumberExpression
.DoubleBinding
subtract(double other)
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.FloatBinding
subtract(float other)
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.IntegerBinding
subtract(int other)
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.LongBinding
subtract(long other)
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.Methods declared in class javafx.beans.binding.NumberExpressionBase
numberExpression
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods declared in interface javafx.beans.binding.NumberExpression
add, asString, asString, asString, divide, greaterThan, greaterThan, greaterThan, greaterThan, greaterThan, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, greaterThanOrEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, isNotEqualTo, lessThan, lessThan, lessThan, lessThan, lessThan, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, lessThanOrEqualTo, multiply, subtract
Methods declared in interface javafx.beans.Observable
addListener, removeListener
Methods declared in interface javafx.beans.value.ObservableIntegerValue
get
Methods declared in interface javafx.beans.value.ObservableNumberValue
doubleValue, floatValue, intValue, longValue
Methods declared in interface javafx.beans.value.ObservableValue
addListener, getValue, removeListener
-
Constructor Details
-
IntegerExpression
public IntegerExpression()Creates a defaultIntegerExpression
.
-
-
Method Details
-
integerExpression
Returns aIntegerExpression
that wraps aObservableIntegerValue
. If theObservableIntegerValue
is already aIntegerExpression
, it will be returned. Otherwise a newIntegerBinding
is created that is bound to theObservableIntegerValue
.- Parameters:
value
- The sourceObservableIntegerValue
- Returns:
- A
IntegerExpression
that wraps theObservableIntegerValue
if necessary - Throws:
NullPointerException
- ifvalue
isnull
-
integerExpression
Returns anIntegerExpression
that wraps anObservableValue
. If theObservableValue
is already aIntegerExpression
, it will be returned. Otherwise a newIntegerBinding
is created that is bound to theObservableValue
.Note: this method can be used to convert an
ObjectExpression
orObjectProperty
of specific number type to IntegerExpression, which is essentially anObservableValue<Number>
. See sample below.
Note: null values will be interpreted as 0IntegerProperty integerProperty = new SimpleIntegerProperty(1); ObjectProperty<Integer> objectProperty = new SimpleObjectProperty<>(2); BooleanBinding binding = integerProperty.greaterThan(IntegerExpression.integerExpression(objectProperty));
- Type Parameters:
T
- The type of Number to be wrapped- Parameters:
value
- The sourceObservableValue
- Returns:
- A
IntegerExpression
that wraps theObservableValue
if necessary - Throws:
NullPointerException
- ifvalue
isnull
- Since:
- JavaFX 8.0
-
negate
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the negation ofNumberExpression
.- Specified by:
negate
in interfaceNumberExpression
- Returns:
- the new
NumberBinding
-
add
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.- Specified by:
add
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
add
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.- Specified by:
add
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
add
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.- Specified by:
add
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
add
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the sum of thisNumberExpression
and a constant value.- Specified by:
add
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
subtract
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.- Specified by:
subtract
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
subtract
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.- Specified by:
subtract
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
subtract
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.- Specified by:
subtract
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
subtract
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the difference of thisNumberExpression
and a constant value.- Specified by:
subtract
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
multiply
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.- Specified by:
multiply
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
multiply
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.- Specified by:
multiply
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
multiply
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.- Specified by:
multiply
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
multiply
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the product of thisNumberExpression
and a constant value.- Specified by:
multiply
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
divide
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.- Specified by:
divide
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
divide
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.- Specified by:
divide
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
divide
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.- Specified by:
divide
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
divide
Description copied from interface:NumberExpression
Creates a newNumberBinding
that calculates the division of thisNumberExpression
and a constant value.- Specified by:
divide
in interfaceNumberExpression
- Parameters:
other
- the constant value- Returns:
- the new
NumberBinding
-
asObject
Creates anObjectExpression
that holds the value of thisIntegerExpression
. If the value of thisIntegerExpression
changes, the value of theObjectExpression
will be updated automatically.- Returns:
- the new
ObjectExpression
- Since:
- JavaFX 8.0
-