public interface ReadableBooleanProperty extends ReadableProperty<Boolean>, javafx.beans.value.ObservableBooleanValue
| Modifier and Type | Field and Description |
|---|---|
static GenericType<Boolean> |
TYPE |
PROPERTY_TYPE| Modifier and Type | Method and Description |
|---|---|
default javafx.beans.binding.BooleanBinding |
and(javafx.beans.value.ObservableBooleanValue other) |
default boolean |
get() |
default GenericType<Boolean> |
getType() |
default javafx.beans.binding.BooleanBinding |
isEqualTo(javafx.beans.value.ObservableBooleanValue other) |
default javafx.beans.binding.BooleanBinding |
isNotEqualTo(javafx.beans.value.ObservableBooleanValue other) |
default javafx.beans.binding.BooleanBinding |
not() |
default javafx.beans.binding.BooleanBinding |
or(javafx.beans.value.ObservableBooleanValue other) |
getBean, getNameaddListener, getValue, removeListenergetValuefromJson, toJsonstatic final GenericType<Boolean> TYPE
getType()default GenericType<Boolean> getType()
getType in interface ReadableProperty<Boolean>value. Please note that the generic signature of this method
is returning the type GenericType<? extends V> instead of GenericType
<V> because JavaFx is binding the type Number for all numeric properties while e.g.
IntegerProperty should be able to return GenericType<Integer> what is compatible
with GenericType<? extends Number>.default boolean get()
get in interface javafx.beans.value.ObservableBooleanValuedefault javafx.beans.binding.BooleanBinding and(javafx.beans.value.ObservableBooleanValue other)
other - the ObservableBooleanValue to build the conjunction with.BooleanBinding that performs the conditional AND-operation on this
ReadableBooleanProperty.BooleanExpression.and(ObservableBooleanValue)default javafx.beans.binding.BooleanBinding or(javafx.beans.value.ObservableBooleanValue other)
other - the ObservableBooleanValue to build the conjunction with.BooleanBinding that performs the conditional OR-operation on this
ReadableBooleanProperty.BooleanExpression.or(ObservableBooleanValue)default javafx.beans.binding.BooleanBinding not()
BooleanBinding that performs the negation of this ReadableBooleanProperty.BooleanExpression.not()default javafx.beans.binding.BooleanBinding isEqualTo(javafx.beans.value.ObservableBooleanValue other)
other - the ObservableBooleanValue to compare.BooleanBinding holds true if this and the given ObservableBooleanValue are
equal.BooleanExpression.isEqualTo(ObservableBooleanValue)default javafx.beans.binding.BooleanBinding isNotEqualTo(javafx.beans.value.ObservableBooleanValue other)
other - the ObservableBooleanValue to compare.BooleanBinding holds false if this and the given ObservableBooleanValue are
equal.BooleanExpression.isNotEqualTo(ObservableBooleanValue)Copyright © 2001–2016 mmm-Team. All rights reserved.