Package de.flapdoodle.kfx.bindings
Object ObservableLists
-
- All Implemented Interfaces:
public class ObservableLists
-
-
Field Summary
Fields Modifier and Type Field Description public final static ObservableListsINSTANCE
-
Method Summary
Modifier and Type Method Description final <S extends Any, T extends Any> SubscriptionsyncWith(ObservableValue<List<S>> source, WritableValue<List<T>> destination, Function1<S, T> transformation)final <S extends Any, T extends Any> SubscriptionsyncWith(ObservableValue<List<S>> source, ObservableList<T> destination, Function1<S, T> transformation)final <S extends Any, T extends Any> SubscriptionsyncWith(ObservableList<S> source, ObservableList<T> destination, Function1<S, T> transformation)final <S extends Any, T extends Any> SubscriptionsyncWithIndexed(ObservableList<S> source, ObservableList<T> destination, Function2<Integer, S, T> transformation)-
-
Method Detail
-
syncWith
final <S extends Any, T extends Any> Subscription syncWith(ObservableValue<List<S>> source, WritableValue<List<T>> destination, Function1<S, T> transformation)
-
syncWith
final <S extends Any, T extends Any> Subscription syncWith(ObservableValue<List<S>> source, ObservableList<T> destination, Function1<S, T> transformation)
-
syncWith
final <S extends Any, T extends Any> Subscription syncWith(ObservableList<S> source, ObservableList<T> destination, Function1<S, T> transformation)
-
-
-
-