JavaScript is disabled on your browser.
Description
Method Summary
Type Parameters:
T - The type of the wrapped property
All Superinterfaces:
Observable , ObservableValue <T>, Property <T>, ReadOnlyJavaBeanProperty <T>, ReadOnlyProperty <T>, WritableValue <T>
All Known Implementing Classes:
JavaBeanBooleanProperty , JavaBeanDoubleProperty , JavaBeanFloatProperty , JavaBeanIntegerProperty , JavaBeanLongProperty , JavaBeanObjectProperty , JavaBeanStringProperty
Method Summary
Methods declared in interface Observable
addListener , removeListener , subscribe
void
void
Removes the given listener from the list of listeners, that are notified
whenever the value of the Observable becomes invalid.
Creates a Subscription on this Observable which calls
invalidationSubscriber whenever it becomes invalid.
addListener , flatMap , getValue , map , orElse , removeListener , subscribe , subscribe , when
void
Adds a
ChangeListener which will be notified whenever the value
of the
ObservableValue changes.
Returns an ObservableValue that holds the value of an ObservableValue
produced by applying the given mapping function on this value.
Returns the current value of this ObservableValue
Returns an ObservableValue that holds the result of applying the
given mapping function on this value.
Returns an ObservableValue that holds this value, or the given constant if
it is null.
void
Removes the given listener from the list of listeners that are notified
whenever the value of the ObservableValue changes.
Creates a Subscription on this ObservableValue which calls the given
changeSubscriber with the old and new value whenever its value changes.
Creates a Subscription on this ObservableValue which immediately
provides the current value to the given valueSubscriber, followed by any
subsequent values whenever its value changes.
Returns an ObservableValue that holds this value and is updated only
when condition holds true.
Methods declared in interface Property
bind , bindBidirectional , isBound , unbind , unbindBidirectional
void
Create a unidirection binding for this Property.
void
Create a bidirectional binding between this Property and another
one.
boolean
Can be used to check, if a Property is bound.
void
Remove the unidirectional binding for this Property.
void
Removes a bidirectional binding between this Property and another
one.
dispose , fireValueChangedEvent
void
Signals to the JavaFX property that it will not be used anymore and any
references can be removed.
void
This method can be called to notify the adapter of a change of the Java
Bean value, if the Java Bean property is not bound (i.e.
getBean , getName
Returns the Object that contains this property.
Returns the name of this property.