Object ObservableLists

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final <S extends Any, T extends Any> Subscription syncWith(ObservableValue<List<S>> source, WritableValue<List<T>> destination, Function1<S, T> transformation)
      final <S extends Any, T extends Any> Subscription syncWith(ObservableValue<List<S>> source, ObservableList<T> destination, Function1<S, T> transformation)
      final <S extends Any, T extends Any> Subscription syncWith(ObservableList<S> source, ObservableList<T> destination, Function1<S, T> transformation)
      final <S extends Any, T extends Any> Subscription syncWithIndexed(ObservableList<S> source, ObservableList<T> destination, Function2<Integer, S, T> transformation)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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)
      • syncWithIndexed

         final <S extends Any, T extends Any> Subscription syncWithIndexed(ObservableList<S> source, ObservableList<T> destination, Function2<Integer, S, T> transformation)