- Type Parameters:
V - type of the value.
- All Superinterfaces:
EventSource<ObservableEvent<V>,ObservableEventListener<? super V>>, Expression<V>, ObservableValue<V>, ReadableValue<V>, Supplier<V>
- All Known Subinterfaces:
BigDecimalExpression, BigIntegerExpression, ByteExpression, DoubleExpression, DurationExpression, FloatExpression, InstantExpression, IntegerExpression, LocalDateExpression, LocalDateTimeExpression, LocalTimeExpression, LongExpression, NumberExpression<N>, OffsetDateTimeExpression, OffsetTimeExpression, ShortExpression, StringExpression, TemporalAmountExpression<V>, TemporalExpression<V>, ZonedDateTimeExpression
- All Known Implementing Classes:
BigDecimalBinding, BigIntegerBinding, ByteBinding, DoubleBinding, DurationBinding, FloatBinding, InstantBinding, IntegerBinding, LocalDateBinding, LocalDateTimeBinding, LocalTimeBinding, LongBinding, NumberBinding, OffsetDateTimeBinding, OffsetDateTimeBinding, ShortBinding, StringBinding, ZonedDateTimeBinding
- Since:
- 1.0.0
-
Method Summary
-
Method Details
-
greaterThan
- Parameters:
other - the ObservableValue<V> to compare.
- Returns:
- a new
BooleanBinding that holds true if the value of this property is
greater than the value of another the given ObservableValue.
-
greaterThan
- Parameters:
other - the constant value to compare.
- Returns:
- a new
BooleanBinding that holds true if the value of this property is
greater than the given String.
-
lessThan
- Parameters:
other - the ObservableValue<V> to compare.
- Returns:
- a new
BooleanBinding that holds true if the value of this property is less
than the value of another the given ObservableValue.
-
lessThan
- Parameters:
other - the constant value to compare.
- Returns:
- a new
BooleanBinding that holds true if the value of this property is less
than the given String.
-
greaterThanOrEqualTo
- Parameters:
other - the ObservableValue<V> to compare.
- Returns:
- a new
BooleanBinding that holds true if the value of this property is
greater than or equal to the value of another the given ObservableValue.
-
greaterThanOrEqualTo
- Parameters:
other - the constant value to compare.
- Returns:
- a new
BooleanBinding that holds true if the value of this property is
greater than or equal to the given String.
-
lessThanOrEqualTo
- Parameters:
other - the ObservableValue<V> to compare.
- Returns:
- a new
BooleanBinding that holds true if the value of this property is less
than the value of another the given ObservableValue.
-
lessThanOrEqualTo
- Parameters:
other - the constant value to compare.
- Returns:
- a new
BooleanBinding that holds true if the value of this property is less
than or equal to the given String.