V - is the generic type of the value.public interface ReadableObjectProperty<V> extends ReadableProperty<V>, javafx.beans.value.ObservableObjectValue<V>
PROPERTY_TYPE| Modifier and Type | Method and Description |
|---|---|
default V |
get() |
default javafx.beans.binding.BooleanBinding |
isEqualTo(javafx.beans.value.ObservableObjectValue<V> other) |
default javafx.beans.binding.BooleanBinding |
isEqualTo(V other) |
default javafx.beans.binding.BooleanBinding |
isNotEqualTo(javafx.beans.value.ObservableObjectValue<V> other) |
default javafx.beans.binding.BooleanBinding |
isNotEqualTo(V other) |
default javafx.beans.binding.BooleanBinding |
isNotNull() |
default javafx.beans.binding.BooleanBinding |
isNull() |
getBean, getName, getTypeaddListener, getValue, removeListenergetValuefromJson, toJsondefault javafx.beans.binding.BooleanBinding isEqualTo(javafx.beans.value.ObservableObjectValue<V> other)
other - the ObservableObjectValue to check for equality.BooleanBinding that holds true if the value of this property and
the value of the given ObservableObjectValue are
equal.Bindings.equal(ObservableObjectValue, ObservableObjectValue)default javafx.beans.binding.BooleanBinding isEqualTo(V other)
other - the constant value to check for equality.BooleanBinding that holds true if the value of this property and
the given value are equal.Bindings.equal(ObservableObjectValue, Object)default javafx.beans.binding.BooleanBinding isNotEqualTo(javafx.beans.value.ObservableObjectValue<V> other)
other - the ObservableObjectValue to check for non-equality.BooleanBinding that holds true if the value of this property and
the value of the given ObservableObjectValue are NOT
equal.Bindings.notEqual(ObservableObjectValue, ObservableObjectValue)default javafx.beans.binding.BooleanBinding isNotEqualTo(V other)
other - the constant value to check for non-equality.BooleanBinding that holds true if the value of this property and
the given value are NOT equal.Bindings.notEqual(ObservableObjectValue, Object)default javafx.beans.binding.BooleanBinding isNull()
BooleanBinding that holds true if the value of this property is
null.Bindings.isNull(javafx.beans.value.ObservableObjectValue)default javafx.beans.binding.BooleanBinding isNotNull()
BooleanBinding that holds true if the value of this property is
NOT null.Bindings.isNotNull(javafx.beans.value.ObservableObjectValue)Copyright © 2001–2016 mmm-Team. All rights reserved.