Uses of Class
javafx.beans.binding.BooleanBinding
Package
Description
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
Modifier and TypeMethodDescriptionstatic BooleanBinding
Bindings.and
(ObservableBooleanValue op1, ObservableBooleanValue op2) Creates aBooleanBinding
that calculates the conditional-AND operation on the value of two instance ofObservableBooleanValue
.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.NumberExpression.greaterThan
(double other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than a constant value.NumberExpression.greaterThan
(float other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than a constant value.NumberExpression.greaterThan
(int other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than a constant value.NumberExpression.greaterThan
(long other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than a constant value.NumberExpression.greaterThan
(ObservableNumberValue other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than anotherObservableNumberValue
.NumberExpressionBase.greaterThan
(double other) NumberExpressionBase.greaterThan
(float other) NumberExpressionBase.greaterThan
(int other) NumberExpressionBase.greaterThan
(long other) NumberExpressionBase.greaterThan
(ObservableNumberValue other) StringExpression.greaterThan
(String other) Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is greater than a constant value.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.NumberExpression.greaterThanOrEqualTo
(double other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to a constant value.NumberExpression.greaterThanOrEqualTo
(float other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to a constant value.NumberExpression.greaterThanOrEqualTo
(int other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to a constant value.NumberExpression.greaterThanOrEqualTo
(long other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to a constant value.NumberExpression.greaterThanOrEqualTo
(ObservableNumberValue other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is greater than or equal to anotherObservableNumberValue
.NumberExpressionBase.greaterThanOrEqualTo
(double other) NumberExpressionBase.greaterThanOrEqualTo
(float other) NumberExpressionBase.greaterThanOrEqualTo
(int other) NumberExpressionBase.greaterThanOrEqualTo
(long other) NumberExpressionBase.greaterThanOrEqualTo
(ObservableNumberValue other) StringExpression.greaterThanOrEqualTo
(String other) Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is greater than or equal to a constant value.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) StringExpression.isEmpty()
BooleanExpression.isEqualTo
(ObservableBooleanValue other) Creates a newBooleanExpression
that holdstrue
if this and anotherObservableBooleanValue
are equal.ListExpression.isEqualTo
(ObservableList<?> other) MapExpression.isEqualTo
(ObservableMap<?, ?> other) NumberExpression.isEqualTo
(double other, double epsilon) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is equal to a constant value (with a tolerance).NumberExpression.isEqualTo
(float other, double epsilon) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is equal to a constant value (with a tolerance).NumberExpression.isEqualTo
(int other) NumberExpression.isEqualTo
(int other, double epsilon) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is equal to a constant value (with a tolerance).NumberExpression.isEqualTo
(long other) NumberExpression.isEqualTo
(long other, double epsilon) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is equal to a constant value (with a tolerance).NumberExpression.isEqualTo
(ObservableNumberValue other) NumberExpression.isEqualTo
(ObservableNumberValue other, double epsilon) Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are equal (with a tolerance).NumberExpressionBase.isEqualTo
(double other, double epsilon) NumberExpressionBase.isEqualTo
(float other, double epsilon) NumberExpressionBase.isEqualTo
(int other) NumberExpressionBase.isEqualTo
(int other, double epsilon) NumberExpressionBase.isEqualTo
(long other) NumberExpressionBase.isEqualTo
(long other, double epsilon) NumberExpressionBase.isEqualTo
(ObservableNumberValue other) NumberExpressionBase.isEqualTo
(ObservableNumberValue other, double epsilon) Creates a newBooleanExpression
that holdstrue
if thisObjectExpression
is equal to a constant value.ObjectExpression.isEqualTo
(ObservableObjectValue<?> other) Creates a newBooleanExpression
that holdstrue
if this and anotherObservableObjectValue
are equal.SetExpression.isEqualTo
(ObservableSet<?> other) StringExpression.isEqualTo
(ObservableStringValue other) StringExpression.isEqualToIgnoreCase
(String other) Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is equal to a constant value ignoring case.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) StringExpression.isNotEmpty()
BooleanExpression.isNotEqualTo
(ObservableBooleanValue other) Creates a newBooleanExpression
that holdstrue
if this and anotherObservableBooleanValue
are equal.ListExpression.isNotEqualTo
(ObservableList<?> other) MapExpression.isNotEqualTo
(ObservableMap<?, ?> other) NumberExpression.isNotEqualTo
(double other, double epsilon) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value (with a tolerance).NumberExpression.isNotEqualTo
(float other, double epsilon) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value (with a tolerance).NumberExpression.isNotEqualTo
(int other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value.NumberExpression.isNotEqualTo
(int other, double epsilon) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value (with a tolerance).NumberExpression.isNotEqualTo
(long other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value.NumberExpression.isNotEqualTo
(long other, double epsilon) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is not equal to a constant value (with a tolerance).NumberExpression.isNotEqualTo
(ObservableNumberValue other) Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are not equal.NumberExpression.isNotEqualTo
(ObservableNumberValue other, double epsilon) Creates a newBooleanBinding
that holdstrue
if this and anotherObservableNumberValue
are not equal (with a tolerance).NumberExpressionBase.isNotEqualTo
(double other, double epsilon) NumberExpressionBase.isNotEqualTo
(float other, double epsilon) NumberExpressionBase.isNotEqualTo
(int other) NumberExpressionBase.isNotEqualTo
(int other, double epsilon) NumberExpressionBase.isNotEqualTo
(long other) NumberExpressionBase.isNotEqualTo
(long other, double epsilon) NumberExpressionBase.isNotEqualTo
(ObservableNumberValue other) NumberExpressionBase.isNotEqualTo
(ObservableNumberValue other, double epsilon) ObjectExpression.isNotEqualTo
(Object other) Creates a newBooleanExpression
that holdstrue
if thisObjectExpression
is not equal to a constant value.ObjectExpression.isNotEqualTo
(ObservableObjectValue<?> other) Creates a newBooleanExpression
that holdstrue
if this and anotherObservableObjectValue
are not equal.SetExpression.isNotEqualTo
(ObservableSet<?> other) StringExpression.isNotEqualTo
(String other) Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is not equal to a constant value.StringExpression.isNotEqualTo
(ObservableStringValue other) Creates a newBooleanBinding
that holdstrue
if this and anotherObservableStringValue
are not equal.StringExpression.isNotEqualToIgnoreCase
(String other) Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is not equal to a constant value ignoring case.StringExpression.isNotEqualToIgnoreCase
(ObservableStringValue other) Creates a newBooleanBinding
that holdstrue
if this and anotherObservableStringValue
are not equal ignoring case.static BooleanBinding
Bindings.isNotNull
(ObservableObjectValue<?> op) ListExpression.isNotNull()
MapExpression.isNotNull()
ObjectExpression.isNotNull()
SetExpression.isNotNull()
StringExpression.isNotNull()
static BooleanBinding
Bindings.isNull
(ObservableObjectValue<?> op) ListExpression.isNull()
MapExpression.isNull()
ObjectExpression.isNull()
SetExpression.isNull()
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.NumberExpression.lessThan
(double other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than a constant value.NumberExpression.lessThan
(float other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than a constant value.NumberExpression.lessThan
(int other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than a constant value.NumberExpression.lessThan
(long other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than a constant value.NumberExpression.lessThan
(ObservableNumberValue other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is lesser than anotherObservableNumberValue
.NumberExpressionBase.lessThan
(double other) NumberExpressionBase.lessThan
(float other) NumberExpressionBase.lessThan
(int other) NumberExpressionBase.lessThan
(long other) NumberExpressionBase.lessThan
(ObservableNumberValue other) Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is less than a constant value.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.NumberExpression.lessThanOrEqualTo
(double other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to a constant value.NumberExpression.lessThanOrEqualTo
(float other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to a constant value.NumberExpression.lessThanOrEqualTo
(int other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to a constant value.NumberExpression.lessThanOrEqualTo
(long other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to a constant value.NumberExpression.lessThanOrEqualTo
(ObservableNumberValue other) Creates a newBooleanBinding
that holdstrue
if thisNumberExpression
is less than or equal to anotherObservableNumberValue
.NumberExpressionBase.lessThanOrEqualTo
(double other) NumberExpressionBase.lessThanOrEqualTo
(float other) NumberExpressionBase.lessThanOrEqualTo
(int other) NumberExpressionBase.lessThanOrEqualTo
(long other) NumberExpressionBase.lessThanOrEqualTo
(ObservableNumberValue other) StringExpression.lessThanOrEqualTo
(String other) Creates a newBooleanBinding
that holdstrue
if thisStringExpression
is less than or equal to a constant value.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
.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
.BooleanExpression.or
(ObservableBooleanValue other) Creates a newBooleanExpression
that performs the conditional OR-operation on thisBooleanExpression
and aObservableBooleanValue
.When.BooleanConditionBuilder.otherwise
(boolean otherwiseValue) Defines a constant value of the ternary expression, that is returned if the condition isfalse
.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
.