public final class UIThreadAwareBindings
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static <T> javafx.beans.value.ChangeListener<T> |
uiThreadAwareBind(javafx.beans.property.Property<T> property,
javafx.beans.value.ObservableValue<T> observable)
Registers a
ChangeListener on the supplied observable that will notify the target property. |
static javafx.beans.binding.BooleanBinding |
uiThreadAwareBooleanBinding(javafx.beans.binding.BooleanBinding binding)
Creates a boolean binding that notifies its listeners inside the UI thread.
|
static javafx.beans.property.BooleanProperty |
uiThreadAwareBooleanProperty(javafx.beans.property.BooleanProperty observable)
Creates an observable boolean property that notifies its listeners inside the UI thread.
|
static <T> javafx.beans.value.ChangeListener<T> |
uiThreadAwareChangeListener(javafx.beans.value.ChangeListener<T> listener)
Creates a
ChangeListener that always handles notifications inside the UI thread. |
static <T> javafx.beans.value.ChangeListener<T> |
uiThreadAwareChangeListener(java.util.function.Consumer<T> consumer)
Creates a
ChangeListener that always handles notifications inside the UI thread. |
static <T> javafx.beans.value.ChangeListener<T> |
uiThreadAwareChangeListener(javafx.beans.value.ObservableValue<T> observable,
javafx.beans.value.ChangeListener<T> listener)
Registers a
ChangeListener that always handles notifications inside the UI thread. |
static <T> javafx.beans.value.ChangeListener<T> |
uiThreadAwareChangeListener(javafx.beans.value.ObservableValue<T> observable,
java.util.function.Consumer<T> consumer)
Registers a
ChangeListener that always handles notifications inside the UI thread. |
static <T> javafx.beans.value.ChangeListener<T> |
uiThreadAwareChangeListener(javafx.beans.value.ObservableValue<T> observable,
java.lang.Runnable runnable)
Registers a
ChangeListener that always handles notifications inside the UI thread. |
static <T> javafx.beans.value.ChangeListener<T> |
uiThreadAwareChangeListener(java.lang.Runnable runnable)
Creates a
ChangeListener that always handles notifications inside the UI thread. |
static javafx.beans.binding.DoubleBinding |
uiThreadAwareDoubleBinding(javafx.beans.binding.DoubleBinding binding)
Creates a double binding that notifies its listeners inside the UI thread.
|
static javafx.beans.property.DoubleProperty |
uiThreadAwareDoubleProperty(javafx.beans.property.DoubleProperty observable)
Creates an observable double property that notifies its listeners inside the UI thread.
|
static javafx.beans.binding.FloatBinding |
uiThreadAwareFloatBinding(javafx.beans.binding.FloatBinding binding)
Creates a float binding that notifies its listeners inside the UI thread.
|
static javafx.beans.property.FloatProperty |
uiThreadAwareFloatProperty(javafx.beans.property.FloatProperty observable)
Creates an observable float property that notifies its listeners inside the UI thread.
|
static javafx.beans.binding.IntegerBinding |
uiThreadAwareIntegerBinding(javafx.beans.binding.IntegerBinding binding)
Creates an integer binding that notifies its listeners inside the UI thread.
|
static javafx.beans.property.IntegerProperty |
uiThreadAwareIntegerProperty(javafx.beans.property.IntegerProperty observable)
Creates an observable integer property that notifies its listeners inside the UI thread.
|
static javafx.beans.InvalidationListener |
uiThreadAwareInvalidationListener(java.util.function.Consumer<javafx.beans.Observable> consumer)
Creates a
InvalidationListener that always handles notifications inside the UI thread. |
static javafx.beans.InvalidationListener |
uiThreadAwareInvalidationListener(javafx.beans.InvalidationListener listener)
Creates a
InvalidationListener that always handles notifications inside the UI thread. |
static javafx.beans.InvalidationListener |
uiThreadAwareInvalidationListener(javafx.beans.Observable observable,
java.util.function.Consumer<javafx.beans.Observable> consumer)
Registers a
InvalidationListener that always handles notifications inside the UI thread. |
static javafx.beans.InvalidationListener |
uiThreadAwareInvalidationListener(javafx.beans.Observable observable,
javafx.beans.InvalidationListener listener)
Registers a
InvalidationListener that always handles notifications inside the UI thread. |
static javafx.beans.InvalidationListener |
uiThreadAwareInvalidationListener(javafx.beans.Observable observable,
java.lang.Runnable runnable)
Registers a
InvalidationListener that always handles notifications inside the UI thread. |
static javafx.beans.InvalidationListener |
uiThreadAwareInvalidationListener(java.lang.Runnable runnable)
Creates a
InvalidationListener that always handles notifications inside the UI thread. |
static <E> javafx.collections.ListChangeListener<E> |
uiThreadAwareListChangeListener(java.util.function.Consumer<javafx.collections.ListChangeListener.Change<? extends E>> consumer)
Creates a
ListChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.collections.ListChangeListener<E> |
uiThreadAwareListChangeListener(javafx.collections.ListChangeListener<E> listener)
Creates a
ListChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.collections.ListChangeListener<E> |
uiThreadAwareListChangeListener(javafx.collections.ObservableList<E> observable,
java.util.function.Consumer<javafx.collections.ListChangeListener.Change<? extends E>> consumer)
Registers a
ListChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.collections.ListChangeListener<E> |
uiThreadAwareListChangeListener(javafx.collections.ObservableList<E> observable,
javafx.collections.ListChangeListener<E> listener)
Registers a
ListChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.collections.ListChangeListener<E> |
uiThreadAwareListChangeListener(javafx.collections.ObservableList<E> observable,
java.lang.Runnable runnable)
Registers a
ListChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.collections.ListChangeListener<E> |
uiThreadAwareListChangeListener(java.lang.Runnable runnable)
Creates a
ListChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.beans.property.ListProperty<E> |
uiThreadAwareListProperty(javafx.beans.property.ListProperty<E> observable)
Creates an observable list property that notifies its listeners inside the UI thread.
|
static javafx.beans.binding.LongBinding |
uiThreadAwareLongBinding(javafx.beans.binding.LongBinding binding)
Creates a long binding that notifies its listeners inside the UI thread.
|
static javafx.beans.property.LongProperty |
uiThreadAwareLongProperty(javafx.beans.property.LongProperty observable)
Creates an observable long property that notifies its listeners inside the UI thread.
|
static <K,V> javafx.collections.MapChangeListener<K,V> |
uiThreadAwareMapChangeListener(java.util.function.Consumer<javafx.collections.MapChangeListener.Change<? extends K,? extends V>> consumer)
Creates a
MapChangeListener that always handles notifications inside the UI thread. |
static <K,V> javafx.collections.MapChangeListener<K,V> |
uiThreadAwareMapChangeListener(javafx.collections.MapChangeListener<K,V> listener)
Creates a
MapChangeListener that always handles notifications inside the UI thread. |
static <K,V> javafx.collections.MapChangeListener<K,V> |
uiThreadAwareMapChangeListener(javafx.collections.ObservableMap<K,V> observable,
java.util.function.Consumer<javafx.collections.MapChangeListener.Change<? extends K,? extends V>> consumer)
Registers a
MapChangeListener that always handles notifications inside the UI thread. |
static <K,V> javafx.collections.MapChangeListener<K,V> |
uiThreadAwareMapChangeListener(javafx.collections.ObservableMap<K,V> observable,
javafx.collections.MapChangeListener<K,V> listener)
Registers a
MapChangeListener that always handles notifications inside the UI thread. |
static <K,V> javafx.collections.MapChangeListener<K,V> |
uiThreadAwareMapChangeListener(javafx.collections.ObservableMap<K,V> observable,
java.lang.Runnable runnable)
Registers a
MapChangeListener that always handles notifications inside the UI thread. |
static <K,V> javafx.collections.MapChangeListener<K,V> |
uiThreadAwareMapChangeListener(java.lang.Runnable runnable)
Creates a
MapChangeListener that always handles notifications inside the UI thread. |
static <K,V> javafx.beans.property.MapProperty<K,V> |
uiThreadAwareMapProperty(javafx.beans.property.MapProperty<K,V> observable)
Creates an observable map property that notifies its listeners inside the UI thread.
|
static <T> javafx.beans.binding.ObjectBinding<T> |
uiThreadAwareObjectBinding(javafx.beans.binding.ObjectBinding<T> binding)
Creates an object binding that notifies its listeners inside the UI thread.
|
static <T> javafx.beans.property.ObjectProperty<T> |
uiThreadAwareObjectProperty(javafx.beans.property.ObjectProperty<T> observable)
Creates an observable object property that notifies its listeners inside the UI thread.
|
static <T> javafx.beans.value.ObservableValue<T> |
uiThreadAwareObservable(javafx.beans.value.ObservableValue<T> observable)
Creates an observable value that notifies its listeners inside the UI thread.
|
static javafx.beans.value.ObservableBooleanValue |
uiThreadAwareObservableBoolean(javafx.beans.value.ObservableBooleanValue observable)
Creates an observable boolean value that notifies its listeners inside the UI thread.
|
static javafx.beans.value.ObservableDoubleValue |
uiThreadAwareObservableDouble(javafx.beans.value.ObservableDoubleValue observable)
Creates an observable double value that notifies its listeners inside the UI thread.
|
static javafx.beans.value.ObservableFloatValue |
uiThreadAwareObservableFloat(javafx.beans.value.ObservableFloatValue observable)
Creates an observable float value that notifies its listeners inside the UI thread.
|
static javafx.beans.value.ObservableIntegerValue |
uiThreadAwareObservableInteger(javafx.beans.value.ObservableIntegerValue observable)
Creates an observable integer value that notifies its listeners inside the UI thread.
|
static javafx.beans.value.ObservableLongValue |
uiThreadAwareObservableLong(javafx.beans.value.ObservableLongValue observable)
Creates an observable long value that notifies its listeners inside the UI thread.
|
static javafx.beans.value.ObservableStringValue |
uiThreadAwareObservableString(javafx.beans.value.ObservableStringValue observable)
Creates an observable string value that notifies its listeners inside the UI thread.
|
static javafx.beans.property.Property<java.lang.Boolean> |
uiThreadAwarePropertyBoolean(javafx.beans.property.Property<java.lang.Boolean> observable)
Creates an observable boolean property that notifies its listeners inside the UI thread.
|
static javafx.beans.property.Property<java.lang.Double> |
uiThreadAwarePropertyDouble(javafx.beans.property.Property<java.lang.Double> observable)
Creates an observable double property that notifies its listeners inside the UI thread.
|
static javafx.beans.property.Property<java.lang.Float> |
uiThreadAwarePropertyFloat(javafx.beans.property.Property<java.lang.Float> observable)
Creates an observable float property that notifies its listeners inside the UI thread.
|
static javafx.beans.property.Property<java.lang.Integer> |
uiThreadAwarePropertyInteger(javafx.beans.property.Property<java.lang.Integer> observable)
Creates an observable integer property that notifies its listeners inside the UI thread.
|
static javafx.beans.property.Property<java.lang.Long> |
uiThreadAwarePropertyLong(javafx.beans.property.Property<java.lang.Long> observable)
Creates an observable long property that notifies its listeners inside the UI thread.
|
static javafx.beans.property.Property<java.lang.String> |
uiThreadAwarePropertyString(javafx.beans.property.Property<java.lang.String> observable)
Creates an observable string property that notifies its listeners inside the UI thread.
|
static <E> javafx.collections.SetChangeListener<E> |
uiThreadAwareSetChangeListener(java.util.function.Consumer<javafx.collections.SetChangeListener.Change<? extends E>> consumer)
Creates a
SetChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.collections.SetChangeListener<E> |
uiThreadAwareSetChangeListener(javafx.collections.ObservableSet<E> observable,
java.util.function.Consumer<javafx.collections.SetChangeListener.Change<? extends E>> consumer)
Registers a
SetChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.collections.SetChangeListener<E> |
uiThreadAwareSetChangeListener(javafx.collections.ObservableSet<E> observable,
java.lang.Runnable runnable)
Registers a
SetChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.collections.SetChangeListener<E> |
uiThreadAwareSetChangeListener(javafx.collections.ObservableSet<E> observable,
javafx.collections.SetChangeListener<E> listener)
Registers a
SetChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.collections.SetChangeListener<E> |
uiThreadAwareSetChangeListener(java.lang.Runnable runnable)
Creates a
SetChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.collections.SetChangeListener<E> |
uiThreadAwareSetChangeListener(javafx.collections.SetChangeListener<E> listener)
Creates a
SetChangeListener that always handles notifications inside the UI thread. |
static <E> javafx.beans.property.SetProperty<E> |
uiThreadAwareSetProperty(javafx.beans.property.SetProperty<E> observable)
Creates an observable set property that notifies its seteners inside the UI thread.
|
static javafx.beans.binding.StringBinding |
uiThreadAwareStringBinding(javafx.beans.binding.StringBinding binding)
Creates a string binding that notifies its listeners inside the UI thread.
|
static javafx.beans.property.StringProperty |
uiThreadAwareStringProperty(javafx.beans.property.StringProperty observable)
Creates an observable string property that notifies its listeners inside the UI thread.
|
public static <T> javafx.beans.value.ChangeListener<T> uiThreadAwareBind(@Nonnull javafx.beans.property.Property<T> property, @Nonnull javafx.beans.value.ObservableValue<T> observable)
ChangeListener
on the supplied observable that will notify the target property.property
- the property that will be notified of value changes.observable
- the observable on which the listener will be registered.public static <T> javafx.beans.value.ChangeListener<T> uiThreadAwareChangeListener(@Nonnull javafx.beans.value.ObservableValue<T> observable, @Nonnull javafx.beans.value.ChangeListener<T> listener)
ChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.listener
- the wrapped change listener.ChangeListener
.@Nonnull public static <T> javafx.beans.value.ChangeListener<T> uiThreadAwareChangeListener(@Nonnull javafx.beans.value.ChangeListener<T> listener)
ChangeListener
that always handles notifications inside the UI thread.listener
- the wrapped change listener.ChangeListener
.public static <T> javafx.beans.value.ChangeListener<T> uiThreadAwareChangeListener(@Nonnull javafx.beans.value.ObservableValue<T> observable, @Nonnull java.util.function.Consumer<T> consumer)
ChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.consumer
- the consumer of the newValue
argument.ChangeListener
.@Nonnull public static <T> javafx.beans.value.ChangeListener<T> uiThreadAwareChangeListener(@Nonnull java.util.function.Consumer<T> consumer)
ChangeListener
that always handles notifications inside the UI thread.consumer
- the consumer of the newValue
argument.ChangeListener
.public static <T> javafx.beans.value.ChangeListener<T> uiThreadAwareChangeListener(@Nonnull javafx.beans.value.ObservableValue<T> observable, @Nonnull java.lang.Runnable runnable)
ChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.runnable
- the code to be executed when the listener is notified.ChangeListener
.@Nonnull public static <T> javafx.beans.value.ChangeListener<T> uiThreadAwareChangeListener(@Nonnull java.lang.Runnable runnable)
ChangeListener
that always handles notifications inside the UI thread.runnable
- the code to be executed when the listener is notified.ChangeListener
.public static javafx.beans.InvalidationListener uiThreadAwareInvalidationListener(@Nonnull javafx.beans.Observable observable, @Nonnull javafx.beans.InvalidationListener listener)
InvalidationListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.listener
- the wrapped invalidation listener.InvalidationListener
.@Nonnull public static javafx.beans.InvalidationListener uiThreadAwareInvalidationListener(@Nonnull javafx.beans.InvalidationListener listener)
InvalidationListener
that always handles notifications inside the UI thread.listener
- the wrapped invalidation listener.InvalidationListener
.public static javafx.beans.InvalidationListener uiThreadAwareInvalidationListener(@Nonnull javafx.beans.Observable observable, @Nonnull java.util.function.Consumer<javafx.beans.Observable> consumer)
InvalidationListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.consumer
- the consumer of the observable
argument.InvalidationListener
.@Nonnull public static javafx.beans.InvalidationListener uiThreadAwareInvalidationListener(@Nonnull java.util.function.Consumer<javafx.beans.Observable> consumer)
InvalidationListener
that always handles notifications inside the UI thread.consumer
- the consumer of the observable
argument.InvalidationListener
.public static javafx.beans.InvalidationListener uiThreadAwareInvalidationListener(@Nonnull javafx.beans.Observable observable, @Nonnull java.lang.Runnable runnable)
InvalidationListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.runnable
- the code to be executed when the listener is notified.InvalidationListener
.@Nonnull public static javafx.beans.InvalidationListener uiThreadAwareInvalidationListener(@Nonnull java.lang.Runnable runnable)
InvalidationListener
that always handles notifications inside the UI thread.runnable
- the code to be executed when the listener is notified.InvalidationListener
.public static <E> javafx.collections.ListChangeListener<E> uiThreadAwareListChangeListener(@Nonnull javafx.collections.ObservableList<E> observable, @Nonnull javafx.collections.ListChangeListener<E> listener)
ListChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.listener
- the wrapped list change listener.ListChangeListener
.@Nonnull public static <E> javafx.collections.ListChangeListener<E> uiThreadAwareListChangeListener(@Nonnull javafx.collections.ListChangeListener<E> listener)
ListChangeListener
that always handles notifications inside the UI thread.listener
- the wrapped list change listener.ListChangeListener
.public static <E> javafx.collections.ListChangeListener<E> uiThreadAwareListChangeListener(@Nonnull javafx.collections.ObservableList<E> observable, @Nonnull java.util.function.Consumer<javafx.collections.ListChangeListener.Change<? extends E>> consumer)
ListChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.consumer
- the consumer of the newValue
argument.ListChangeListener
.@Nonnull public static <E> javafx.collections.ListChangeListener<E> uiThreadAwareListChangeListener(@Nonnull java.util.function.Consumer<javafx.collections.ListChangeListener.Change<? extends E>> consumer)
ListChangeListener
that always handles notifications inside the UI thread.consumer
- the consumer of the change
argument.ListChangeListener
.public static <E> javafx.collections.ListChangeListener<E> uiThreadAwareListChangeListener(@Nonnull javafx.collections.ObservableList<E> observable, @Nonnull java.lang.Runnable runnable)
ListChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.runnable
- the code to be executed when the listener is notified.ListChangeListener
.@Nonnull public static <E> javafx.collections.ListChangeListener<E> uiThreadAwareListChangeListener(@Nonnull java.lang.Runnable runnable)
ListChangeListener
that always handles notifications inside the UI thread.runnable
- the code to be executed when the listener is notified.ListChangeListener
.public static <K,V> javafx.collections.MapChangeListener<K,V> uiThreadAwareMapChangeListener(@Nonnull javafx.collections.ObservableMap<K,V> observable, @Nonnull javafx.collections.MapChangeListener<K,V> listener)
MapChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.listener
- the wrapped map change listener.MapChangeListener
.@Nonnull public static <K,V> javafx.collections.MapChangeListener<K,V> uiThreadAwareMapChangeListener(@Nonnull javafx.collections.MapChangeListener<K,V> listener)
MapChangeListener
that always handles notifications inside the UI thread.listener
- the wrapped map change listener.MapChangeListener
.public static <K,V> javafx.collections.MapChangeListener<K,V> uiThreadAwareMapChangeListener(@Nonnull javafx.collections.ObservableMap<K,V> observable, @Nonnull java.util.function.Consumer<javafx.collections.MapChangeListener.Change<? extends K,? extends V>> consumer)
MapChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.consumer
- the consumer of the newValue
argument.MapChangeListener
.@Nonnull public static <K,V> javafx.collections.MapChangeListener<K,V> uiThreadAwareMapChangeListener(@Nonnull java.util.function.Consumer<javafx.collections.MapChangeListener.Change<? extends K,? extends V>> consumer)
MapChangeListener
that always handles notifications inside the UI thread.consumer
- the consumer of the change
argument.MapChangeListener
.public static <K,V> javafx.collections.MapChangeListener<K,V> uiThreadAwareMapChangeListener(@Nonnull javafx.collections.ObservableMap<K,V> observable, @Nonnull java.lang.Runnable runnable)
MapChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.runnable
- the code to be executed when the listener is notified.MapChangeListener
.@Nonnull public static <K,V> javafx.collections.MapChangeListener<K,V> uiThreadAwareMapChangeListener(@Nonnull java.lang.Runnable runnable)
MapChangeListener
that always handles notifications inside the UI thread.runnable
- the code to be executed when the listener is notified.MapChangeListener
.public static <E> javafx.collections.SetChangeListener<E> uiThreadAwareSetChangeListener(@Nonnull javafx.collections.ObservableSet<E> observable, @Nonnull javafx.collections.SetChangeListener<E> listener)
SetChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.listener
- the wrapped set change listener.SetChangeListener
.@Nonnull public static <E> javafx.collections.SetChangeListener<E> uiThreadAwareSetChangeListener(@Nonnull javafx.collections.SetChangeListener<E> listener)
SetChangeListener
that always handles notifications inside the UI thread.listener
- the wrapped set change listener.SetChangeListener
.public static <E> javafx.collections.SetChangeListener<E> uiThreadAwareSetChangeListener(@Nonnull javafx.collections.ObservableSet<E> observable, @Nonnull java.util.function.Consumer<javafx.collections.SetChangeListener.Change<? extends E>> consumer)
SetChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.consumer
- the consumer of the newValue
argument.SetChangeListener
.@Nonnull public static <E> javafx.collections.SetChangeListener<E> uiThreadAwareSetChangeListener(@Nonnull java.util.function.Consumer<javafx.collections.SetChangeListener.Change<? extends E>> consumer)
SetChangeListener
that always handles notifications inside the UI thread.consumer
- the consumer of the change
argument.SetChangeListener
.public static <E> javafx.collections.SetChangeListener<E> uiThreadAwareSetChangeListener(@Nonnull javafx.collections.ObservableSet<E> observable, @Nonnull java.lang.Runnable runnable)
SetChangeListener
that always handles notifications inside the UI thread.observable
- the observable on which the listener will be registered.runnable
- the code to be executed when the listener is notified.SetChangeListener
.@Nonnull public static <E> javafx.collections.SetChangeListener<E> uiThreadAwareSetChangeListener(@Nonnull java.lang.Runnable runnable)
SetChangeListener
that always handles notifications inside the UI thread.runnable
- the code to be executed when the listener is notified.SetChangeListener
.@Nonnull public static javafx.beans.property.BooleanProperty uiThreadAwareBooleanProperty(@Nonnull javafx.beans.property.BooleanProperty observable)
observable
- the observable boolean property to wrap.@Nonnull public static javafx.beans.property.IntegerProperty uiThreadAwareIntegerProperty(@Nonnull javafx.beans.property.IntegerProperty observable)
observable
- the observable integer property to wrap.@Nonnull public static javafx.beans.property.LongProperty uiThreadAwareLongProperty(@Nonnull javafx.beans.property.LongProperty observable)
observable
- the observable long property to wrap.@Nonnull public static javafx.beans.property.FloatProperty uiThreadAwareFloatProperty(@Nonnull javafx.beans.property.FloatProperty observable)
observable
- the observable float property to wrap.@Nonnull public static javafx.beans.property.DoubleProperty uiThreadAwareDoubleProperty(@Nonnull javafx.beans.property.DoubleProperty observable)
observable
- the observable double property to wrap.@Nonnull public static javafx.beans.property.StringProperty uiThreadAwareStringProperty(@Nonnull javafx.beans.property.StringProperty observable)
observable
- the observable string property to wrap.@Nonnull public static javafx.beans.property.Property<java.lang.Boolean> uiThreadAwarePropertyBoolean(@Nonnull javafx.beans.property.Property<java.lang.Boolean> observable)
observable
- the observable boolean property to wrap.@Nonnull public static javafx.beans.property.Property<java.lang.Integer> uiThreadAwarePropertyInteger(@Nonnull javafx.beans.property.Property<java.lang.Integer> observable)
observable
- the observable integer property to wrap.@Nonnull public static javafx.beans.property.Property<java.lang.Long> uiThreadAwarePropertyLong(@Nonnull javafx.beans.property.Property<java.lang.Long> observable)
observable
- the observable long property to wrap.@Nonnull public static javafx.beans.property.Property<java.lang.Float> uiThreadAwarePropertyFloat(@Nonnull javafx.beans.property.Property<java.lang.Float> observable)
observable
- the observable float property to wrap.@Nonnull public static javafx.beans.property.Property<java.lang.Double> uiThreadAwarePropertyDouble(@Nonnull javafx.beans.property.Property<java.lang.Double> observable)
observable
- the observable double property to wrap.@Nonnull public static javafx.beans.property.Property<java.lang.String> uiThreadAwarePropertyString(@Nonnull javafx.beans.property.Property<java.lang.String> observable)
observable
- the observable string property to wrap.@Nonnull public static <T> javafx.beans.property.ObjectProperty<T> uiThreadAwareObjectProperty(@Nonnull javafx.beans.property.ObjectProperty<T> observable)
observable
- the observable object property to wrap.@Nonnull public static <E> javafx.beans.property.ListProperty<E> uiThreadAwareListProperty(@Nonnull javafx.beans.property.ListProperty<E> observable)
observable
- the observable list property to wrap.@Nonnull public static <E> javafx.beans.property.SetProperty<E> uiThreadAwareSetProperty(@Nonnull javafx.beans.property.SetProperty<E> observable)
observable
- the observable set property to wrap.@Nonnull public static <K,V> javafx.beans.property.MapProperty<K,V> uiThreadAwareMapProperty(@Nonnull javafx.beans.property.MapProperty<K,V> observable)
observable
- the observable map property to wrap.@Nonnull public static <T> javafx.beans.value.ObservableValue<T> uiThreadAwareObservable(@Nonnull javafx.beans.value.ObservableValue<T> observable)
observable
- the observable to wrap.@Nonnull public static javafx.beans.value.ObservableStringValue uiThreadAwareObservableString(@Nonnull javafx.beans.value.ObservableStringValue observable)
observable
- the observable string to wrap.@Nonnull public static javafx.beans.value.ObservableBooleanValue uiThreadAwareObservableBoolean(@Nonnull javafx.beans.value.ObservableBooleanValue observable)
observable
- the observable boolean to wrap.@Nonnull public static javafx.beans.value.ObservableIntegerValue uiThreadAwareObservableInteger(@Nonnull javafx.beans.value.ObservableIntegerValue observable)
observable
- the observable integer to wrap.@Nonnull public static javafx.beans.value.ObservableLongValue uiThreadAwareObservableLong(@Nonnull javafx.beans.value.ObservableLongValue observable)
observable
- the observable long to wrap.@Nonnull public static javafx.beans.value.ObservableFloatValue uiThreadAwareObservableFloat(@Nonnull javafx.beans.value.ObservableFloatValue observable)
observable
- the observable float to wrap.@Nonnull public static javafx.beans.value.ObservableDoubleValue uiThreadAwareObservableDouble(@Nonnull javafx.beans.value.ObservableDoubleValue observable)
observable
- the observable double to wrap.@Nonnull public static javafx.beans.binding.BooleanBinding uiThreadAwareBooleanBinding(@Nonnull javafx.beans.binding.BooleanBinding binding)
binding
- the boolean binding to wrap.@Nonnull public static javafx.beans.binding.IntegerBinding uiThreadAwareIntegerBinding(@Nonnull javafx.beans.binding.IntegerBinding binding)
binding
- the integer binding to wrap.@Nonnull public static javafx.beans.binding.LongBinding uiThreadAwareLongBinding(@Nonnull javafx.beans.binding.LongBinding binding)
binding
- the long binding to wrap.@Nonnull public static javafx.beans.binding.FloatBinding uiThreadAwareFloatBinding(@Nonnull javafx.beans.binding.FloatBinding binding)
binding
- the float binding to wrap.@Nonnull public static javafx.beans.binding.DoubleBinding uiThreadAwareDoubleBinding(@Nonnull javafx.beans.binding.DoubleBinding binding)
binding
- the double binding to wrap.@Nonnull public static javafx.beans.binding.StringBinding uiThreadAwareStringBinding(@Nonnull javafx.beans.binding.StringBinding binding)
binding
- the string binding to wrap.@Nonnull public static <T> javafx.beans.binding.ObjectBinding<T> uiThreadAwareObjectBinding(@Nonnull javafx.beans.binding.ObjectBinding<T> binding)
binding
- the object binding to wrap.