Uses of Class
javafx.beans.binding.BooleanBinding
Package | Description |
---|---|
javafx.beans.binding |
Provides classes that create and operate on a
Binding
that calculates a value that depends on one or more sources. |
-
Uses of BooleanBinding in javafx.beans.binding
Methods in javafx.beans.binding that return BooleanBinding Modifier and Type Method Description static BooleanBinding
Bindings. and(ObservableBooleanValue op1, ObservableBooleanValue op2)
Creates aBooleanBinding
that calculates the conditional-AND operation on the value of two instance ofObservableBooleanValue
.BooleanBinding
BooleanExpression. and(ObservableBooleanValue other)
Creates a newBooleanExpression
that performs the conditional AND-operation on thisBooleanExpression
and aObservableBooleanValue
.static BooleanBinding
Bindings. booleanValueAt(ObservableList<Boolean> op, int index)
Creates a newBooleanBinding
that contains the element of anObservableList
at the specified position.static BooleanBinding
Bindings. booleanValueAt(ObservableList<Boolean> op, ObservableIntegerValue index)
Creates a newBooleanBinding
that contains the element of anObservableList
at the specified position.static BooleanBinding
Bindings. booleanValueAt(ObservableList<Boolean> op, ObservableNumberValue index)
Creates a newBooleanBinding
that contains the element of anObservableList
at the specified position.static <K> BooleanBinding
Bindings. booleanValueAt(ObservableMap<K,Boolean> op, ObservableValue<? extends K> key)
Creates a newBooleanBinding
that contains the mapping of a specific key in anObservableMap
.static <K> BooleanBinding
Bindings. booleanValueAt(ObservableMap<K,Boolean> op, K key)
Creates a newBooleanBinding
that contains the mapping of a specific key in anObservableMap
.static BooleanBinding
Bindings. createBooleanBinding(Callable<Boolean> func, Observable... dependencies)
Helper function to create a customBooleanBinding
.static BooleanBinding
Bindings. equal(double op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(float op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value.static BooleanBinding
Bindings. equal(int op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value.static BooleanBinding
Bindings. equal(long op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(Object op1, ObservableObjectValue<?> op2)
Creates a newBooleanBinding
that holdstrue
if the value of anObservableObjectValue
is equal to a constant value.static BooleanBinding
Bindings. equal(String op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is equal to a constant value.static BooleanBinding
Bindings. equal(ObservableBooleanValue op1, ObservableBooleanValue op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableBooleanValue
are equal.static BooleanBinding
Bindings. equal(ObservableNumberValue op1, double op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(ObservableNumberValue op1, float op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value.static BooleanBinding
Bindings. equal(ObservableNumberValue op1, int op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value.static BooleanBinding
Bindings. equal(ObservableNumberValue op1, long op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is equal to a constant value (with a tolerance).static BooleanBinding
Bindings. equal(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableNumberValue
are equal.static BooleanBinding
Bindings. equal(ObservableNumberValue op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableNumberValue
are equal (with a tolerance).static BooleanBinding
Bindings. equal(ObservableObjectValue<?> op1, Object op2)
Creates a newBooleanBinding
that holdstrue
if the value of anObservableObjectValue
is equal to a constant value.static BooleanBinding
Bindings. equal(ObservableObjectValue<?> op1, ObservableObjectValue<?> op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableObjectValue
are equal.static BooleanBinding
Bindings. equal(ObservableStringValue op1, String op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is equal to a constant value.static BooleanBinding
Bindings. equal(ObservableStringValue op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableStringValue
are equal.static BooleanBinding
Bindings. equalIgnoreCase(String op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is equal to a constant value ignoring case.static BooleanBinding
Bindings. equalIgnoreCase(ObservableStringValue op1, String op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is equal to a constant value ignoring case.static BooleanBinding
Bindings. equalIgnoreCase(ObservableStringValue op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableStringValue
are equal ignoring case.static BooleanBinding
Bindings. greaterThan(double op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThan(float op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThan(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThan(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThan(String op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of a constant value is greater than the value of aObservableStringValue
.static BooleanBinding
Bindings. greaterThan(ObservableNumberValue op1, double op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than a constant value.static BooleanBinding
Bindings. greaterThan(ObservableNumberValue op1, float op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than a constant value.static BooleanBinding
Bindings. greaterThan(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than a constant value.static BooleanBinding
Bindings. greaterThan(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than a constant value.static BooleanBinding
Bindings. greaterThan(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableNumberValue
is greater than the value of the second.static BooleanBinding
Bindings. greaterThan(ObservableStringValue op1, String op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is greater than a constant value.static BooleanBinding
Bindings. greaterThan(ObservableStringValue op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableStringValue
is greater than the value of the second.BooleanBinding
NumberExpression. greaterThan(double other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than a constant value.BooleanBinding
NumberExpression. greaterThan(float other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than a constant value.BooleanBinding
NumberExpression. greaterThan(int other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than a constant value.BooleanBinding
NumberExpression. greaterThan(long other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than a constant value.BooleanBinding
NumberExpression. greaterThan(ObservableNumberValue other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than anotherObservableNumberValue
.BooleanBinding
NumberExpressionBase. greaterThan(double other)
BooleanBinding
NumberExpressionBase. greaterThan(float other)
BooleanBinding
NumberExpressionBase. greaterThan(int other)
BooleanBinding
NumberExpressionBase. greaterThan(long other)
BooleanBinding
NumberExpressionBase. greaterThan(ObservableNumberValue other)
BooleanBinding
StringExpression. greaterThan(String other)
Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is greater than a constant value.BooleanBinding
StringExpression. greaterThan(ObservableStringValue other)
Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is greater than anotherObservableStringValue
.static BooleanBinding
Bindings. greaterThanOrEqual(double op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThanOrEqual(float op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThanOrEqual(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThanOrEqual(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. greaterThanOrEqual(String op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is greater than or equal to the value of aObservableStringValue
.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableNumberValue op1, double op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than or equal to a constant value.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableNumberValue op1, float op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than or equal to a constant value.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than or equal to a constant value.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is greater than or equal to a constant value.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableNumberValue
is greater than or equal to the value of the second.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableStringValue op1, String op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is greater than or equal to a constant value.static BooleanBinding
Bindings. greaterThanOrEqual(ObservableStringValue op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableStringValue
is greater than or equal to the value of the second.BooleanBinding
NumberExpression. greaterThanOrEqualTo(double other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to a constant value.BooleanBinding
NumberExpression. greaterThanOrEqualTo(float other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to a constant value.BooleanBinding
NumberExpression. greaterThanOrEqualTo(int other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to a constant value.BooleanBinding
NumberExpression. greaterThanOrEqualTo(long other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to a constant value.BooleanBinding
NumberExpression. greaterThanOrEqualTo(ObservableNumberValue other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to anotherObservableNumberValue
.BooleanBinding
NumberExpressionBase. greaterThanOrEqualTo(double other)
BooleanBinding
NumberExpressionBase. greaterThanOrEqualTo(float other)
BooleanBinding
NumberExpressionBase. greaterThanOrEqualTo(int other)
BooleanBinding
NumberExpressionBase. greaterThanOrEqualTo(long other)
BooleanBinding
NumberExpressionBase. greaterThanOrEqualTo(ObservableNumberValue other)
BooleanBinding
StringExpression. greaterThanOrEqualTo(String other)
Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is greater than or equal to a constant value.BooleanBinding
StringExpression. greaterThanOrEqualTo(ObservableStringValue other)
Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is greater than or equal to anotherObservableStringValue
.static BooleanBinding
Bindings. isEmpty(ObservableStringValue op)
static <E> BooleanBinding
Bindings. isEmpty(ObservableList<E> op)
static <K, V> BooleanBinding
Bindings. isEmpty(ObservableMap<K,V> op)
static <E> BooleanBinding
Bindings. isEmpty(ObservableSet<E> op)
BooleanBinding
StringExpression. isEmpty()
BooleanBinding
BooleanExpression. isEqualTo(ObservableBooleanValue other)
Creates a newBooleanExpression
that holdstrue
if this and anotherObservableBooleanValue
are equal.BooleanBinding
ListExpression. isEqualTo(ObservableList<?> other)
BooleanBinding
MapExpression. isEqualTo(ObservableMap<?,?> other)
BooleanBinding
NumberExpression. isEqualTo(double other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is equal to a constant value (with a tolerance).BooleanBinding
NumberExpression. isEqualTo(float other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is equal to a constant value (with a tolerance).BooleanBinding
NumberExpression. isEqualTo(int other)
BooleanBinding
NumberExpression. isEqualTo(int other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is equal to a constant value (with a tolerance).BooleanBinding
NumberExpression. isEqualTo(long other)
BooleanBinding
NumberExpression. isEqualTo(long other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is equal to a constant value (with a tolerance).BooleanBinding
NumberExpression. isEqualTo(ObservableNumberValue other)
BooleanBinding
NumberExpression. isEqualTo(ObservableNumberValue other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are equal (with a tolerance).BooleanBinding
NumberExpressionBase. isEqualTo(double other, double epsilon)
BooleanBinding
NumberExpressionBase. isEqualTo(float other, double epsilon)
BooleanBinding
NumberExpressionBase. isEqualTo(int other)
BooleanBinding
NumberExpressionBase. isEqualTo(int other, double epsilon)
BooleanBinding
NumberExpressionBase. isEqualTo(long other)
BooleanBinding
NumberExpressionBase. isEqualTo(long other, double epsilon)
BooleanBinding
NumberExpressionBase. isEqualTo(ObservableNumberValue other)
BooleanBinding
NumberExpressionBase. isEqualTo(ObservableNumberValue other, double epsilon)
BooleanBinding
ObjectExpression. isEqualTo(Object other)
Creates a newBooleanExpression
that holdstrue
if thisObjectExpression
is equal to a constant value.BooleanBinding
ObjectExpression. isEqualTo(ObservableObjectValue<?> other)
Creates a newBooleanExpression
that holdstrue
if this and anotherObservableObjectValue
are equal.BooleanBinding
SetExpression. isEqualTo(ObservableSet<?> other)
BooleanBinding
StringExpression. isEqualTo(String other)
BooleanBinding
StringExpression. isEqualTo(ObservableStringValue other)
BooleanBinding
StringExpression. isEqualToIgnoreCase(String other)
Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is equal to a constant value ignoring case.BooleanBinding
StringExpression. isEqualToIgnoreCase(ObservableStringValue other)
Creates a newBooleanBinding
that holdstrue
if this and anotherObservableStringValue
are equal ignoring case.static BooleanBinding
Bindings. isNotEmpty(ObservableStringValue op)
static <E> BooleanBinding
Bindings. isNotEmpty(ObservableList<E> op)
static <K, V> BooleanBinding
Bindings. isNotEmpty(ObservableMap<K,V> op)
static <E> BooleanBinding
Bindings. isNotEmpty(ObservableSet<E> op)
BooleanBinding
StringExpression. isNotEmpty()
BooleanBinding
BooleanExpression. isNotEqualTo(ObservableBooleanValue other)
Creates a newBooleanExpression
that holdstrue
if this and anotherObservableBooleanValue
are equal.BooleanBinding
ListExpression. isNotEqualTo(ObservableList<?> other)
BooleanBinding
MapExpression. isNotEqualTo(ObservableMap<?,?> other)
BooleanBinding
NumberExpression. isNotEqualTo(double other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value (with a tolerance).BooleanBinding
NumberExpression. isNotEqualTo(float other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value (with a tolerance).BooleanBinding
NumberExpression. isNotEqualTo(int other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value.BooleanBinding
NumberExpression. isNotEqualTo(int other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value (with a tolerance).BooleanBinding
NumberExpression. isNotEqualTo(long other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value.BooleanBinding
NumberExpression. isNotEqualTo(long other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value (with a tolerance).BooleanBinding
NumberExpression. isNotEqualTo(ObservableNumberValue other)
Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are not equal.BooleanBinding
NumberExpression. isNotEqualTo(ObservableNumberValue other, double epsilon)
Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are not equal (with a tolerance).BooleanBinding
NumberExpressionBase. isNotEqualTo(double other, double epsilon)
BooleanBinding
NumberExpressionBase. isNotEqualTo(float other, double epsilon)
BooleanBinding
NumberExpressionBase. isNotEqualTo(int other)
BooleanBinding
NumberExpressionBase. isNotEqualTo(int other, double epsilon)
BooleanBinding
NumberExpressionBase. isNotEqualTo(long other)
BooleanBinding
NumberExpressionBase. isNotEqualTo(long other, double epsilon)
BooleanBinding
NumberExpressionBase. isNotEqualTo(ObservableNumberValue other)
BooleanBinding
NumberExpressionBase. isNotEqualTo(ObservableNumberValue other, double epsilon)
BooleanBinding
ObjectExpression. isNotEqualTo(Object other)
Creates a newBooleanExpression
that holdstrue
if thisObjectExpression
is not equal to a constant value.BooleanBinding
ObjectExpression. isNotEqualTo(ObservableObjectValue<?> other)
Creates a newBooleanExpression
that holdstrue
if this and anotherObservableObjectValue
are not equal.BooleanBinding
SetExpression. isNotEqualTo(ObservableSet<?> other)
BooleanBinding
StringExpression. isNotEqualTo(String other)
Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is not equal to a constant value.BooleanBinding
StringExpression. isNotEqualTo(ObservableStringValue other)
Creates a newBooleanBinding
that holdstrue
if this and anotherObservableStringValue
are not equal.BooleanBinding
StringExpression. isNotEqualToIgnoreCase(String other)
Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is not equal to a constant value ignoring case.BooleanBinding
StringExpression. isNotEqualToIgnoreCase(ObservableStringValue other)
Creates a newBooleanBinding
that holdstrue
if this and anotherObservableStringValue
are not equal ignoring case.static BooleanBinding
Bindings. isNotNull(ObservableObjectValue<?> op)
BooleanBinding
ListExpression. isNotNull()
BooleanBinding
MapExpression. isNotNull()
BooleanBinding
ObjectExpression. isNotNull()
BooleanBinding
SetExpression. isNotNull()
BooleanBinding
StringExpression. isNotNull()
static BooleanBinding
Bindings. isNull(ObservableObjectValue<?> op)
BooleanBinding
ListExpression. isNull()
BooleanBinding
MapExpression. isNull()
BooleanBinding
ObjectExpression. isNull()
BooleanBinding
SetExpression. isNull()
BooleanBinding
StringExpression. isNull()
static BooleanBinding
Bindings. lessThan(double op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThan(float op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThan(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThan(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThan(String op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than the value of aObservableStringValue
.static BooleanBinding
Bindings. lessThan(ObservableNumberValue op1, double op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than a constant value.static BooleanBinding
Bindings. lessThan(ObservableNumberValue op1, float op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than a constant value.static BooleanBinding
Bindings. lessThan(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than a constant value.static BooleanBinding
Bindings. lessThan(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than a constant value.static BooleanBinding
Bindings. lessThan(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableNumberValue
is less than the value of the second.static BooleanBinding
Bindings. lessThan(ObservableStringValue op1, String op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is less than a constant value.static BooleanBinding
Bindings. lessThan(ObservableStringValue op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableStringValue
is less than the value of the second.BooleanBinding
NumberExpression. lessThan(double other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than a constant value.BooleanBinding
NumberExpression. lessThan(float other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than a constant value.BooleanBinding
NumberExpression. lessThan(int other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than a constant value.BooleanBinding
NumberExpression. lessThan(long other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than a constant value.BooleanBinding
NumberExpression. lessThan(ObservableNumberValue other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than anotherObservableNumberValue
.BooleanBinding
NumberExpressionBase. lessThan(double other)
BooleanBinding
NumberExpressionBase. lessThan(float other)
BooleanBinding
NumberExpressionBase. lessThan(int other)
BooleanBinding
NumberExpressionBase. lessThan(long other)
BooleanBinding
NumberExpressionBase. lessThan(ObservableNumberValue other)
BooleanBinding
StringExpression. lessThan(String other)
Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is less than a constant value.BooleanBinding
StringExpression. lessThan(ObservableStringValue other)
Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is less than anotherObservableStringValue
.static BooleanBinding
Bindings. lessThanOrEqual(double op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThanOrEqual(float op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThanOrEqual(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThanOrEqual(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than or equal to the value of aObservableNumberValue
.static BooleanBinding
Bindings. lessThanOrEqual(String op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if a constant value is less than or equal to the value of aObservableStringValue
.static BooleanBinding
Bindings. lessThanOrEqual(ObservableNumberValue op1, double op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than or equal to a constant value.static BooleanBinding
Bindings. lessThanOrEqual(ObservableNumberValue op1, float op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than or equal to a constant value.static BooleanBinding
Bindings. lessThanOrEqual(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than or equal to a constant value.static BooleanBinding
Bindings. lessThanOrEqual(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is less than or equal to a constant value.static BooleanBinding
Bindings. lessThanOrEqual(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableNumberValue
is less than or equal to the value of the second.static BooleanBinding
Bindings. lessThanOrEqual(ObservableStringValue op1, String op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is less than or equal to a constant value.static BooleanBinding
Bindings. lessThanOrEqual(ObservableStringValue op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of the firstObservableStringValue
is less than or equal to the value of the second.BooleanBinding
NumberExpression. lessThanOrEqualTo(double other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to a constant value.BooleanBinding
NumberExpression. lessThanOrEqualTo(float other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to a constant value.BooleanBinding
NumberExpression. lessThanOrEqualTo(int other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to a constant value.BooleanBinding
NumberExpression. lessThanOrEqualTo(long other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to a constant value.BooleanBinding
NumberExpression. lessThanOrEqualTo(ObservableNumberValue other)
Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to anotherObservableNumberValue
.BooleanBinding
NumberExpressionBase. lessThanOrEqualTo(double other)
BooleanBinding
NumberExpressionBase. lessThanOrEqualTo(float other)
BooleanBinding
NumberExpressionBase. lessThanOrEqualTo(int other)
BooleanBinding
NumberExpressionBase. lessThanOrEqualTo(long other)
BooleanBinding
NumberExpressionBase. lessThanOrEqualTo(ObservableNumberValue other)
BooleanBinding
StringExpression. lessThanOrEqualTo(String other)
Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is less than or equal to a constant value.BooleanBinding
StringExpression. lessThanOrEqualTo(ObservableStringValue other)
Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is less than or equal to anotherObservableStringValue
.static BooleanBinding
Bindings. not(ObservableBooleanValue op)
Creates aBooleanBinding
that calculates the inverse of the value of aObservableBooleanValue
.BooleanBinding
BooleanExpression. not()
Creates a newBooleanExpression
that calculates the negation of thisBooleanExpression
.static BooleanBinding
Bindings. notEqual(double op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(float op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(int op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(int op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(long op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(long op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(Object op1, ObservableObjectValue<?> op2)
Creates a newBooleanBinding
that holdstrue
if the value of anObservableObjectValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(String op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(ObservableBooleanValue op1, ObservableBooleanValue op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableBooleanValue
are not equal.static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, double op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, float op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, int op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, int op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, long op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, long op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableNumberValue
is not equal to a constant value (with a tolerance).static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, ObservableNumberValue op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableNumberValue
are not equal.static BooleanBinding
Bindings. notEqual(ObservableNumberValue op1, ObservableNumberValue op2, double epsilon)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableNumberValue
are not equal (with a tolerance).static BooleanBinding
Bindings. notEqual(ObservableObjectValue<?> op1, Object op2)
Creates a newBooleanBinding
that holdstrue
if the value of anObservableObjectValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(ObservableObjectValue<?> op1, ObservableObjectValue<?> op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableObjectValue
are not equal.static BooleanBinding
Bindings. notEqual(ObservableStringValue op1, String op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is not equal to a constant value.static BooleanBinding
Bindings. notEqual(ObservableStringValue op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableStringValue
are not equal.static BooleanBinding
Bindings. notEqualIgnoreCase(String op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is not equal to a constant value ignoring case.static BooleanBinding
Bindings. notEqualIgnoreCase(ObservableStringValue op1, String op2)
Creates a newBooleanBinding
that holdstrue
if the value of aObservableStringValue
is not equal to a constant value ignoring case.static BooleanBinding
Bindings. notEqualIgnoreCase(ObservableStringValue op1, ObservableStringValue op2)
Creates a newBooleanBinding
that holdstrue
if the values of two instances ofObservableStringValue
are not equal ignoring case.static BooleanBinding
Bindings. or(ObservableBooleanValue op1, ObservableBooleanValue op2)
Creates aBooleanBinding
that calculates the conditional-OR operation on the value of two instance ofObservableBooleanValue
.BooleanBinding
BooleanExpression. or(ObservableBooleanValue other)
Creates a newBooleanExpression
that performs the conditional OR-operation on thisBooleanExpression
and aObservableBooleanValue
.BooleanBinding
When.BooleanConditionBuilder. otherwise(boolean otherwiseValue)
Defines a constant value of the ternary expression, that is returned if the condition isfalse
.BooleanBinding
When.BooleanConditionBuilder. otherwise(ObservableBooleanValue otherwiseValue)
Defines theObservableBooleanValue
which value is returned by the ternary expression if the condition isfalse
.static BooleanBinding
Bindings. selectBoolean(Object root, String... steps)
Creates a binding used to get a member, such asa.b.c
.static BooleanBinding
Bindings. selectBoolean(ObservableValue<?> root, String... steps)
Creates a binding used to get a member, such asa.b.c
.