Uses of Interface
org.reactfx.collection.ListModification
-
Packages that use ListModification Package Description org.reactfx org.reactfx.collection -
-
Uses of ListModification in org.reactfx
Methods in org.reactfx that return types with arguments of type ListModification Modifier and Type Method Description static <T> EventStream<ListModification<? extends T>>
EventStreams. simpleChangesOf(javafx.collections.ObservableList<T> list)
Use only when the subscriber does not causelist
modification of the underlying list. -
Uses of ListModification in org.reactfx.collection
Classes in org.reactfx.collection that implement ListModification Modifier and Type Class Description (package private) class
ListModificationImpl<E>
Methods in org.reactfx.collection that return ListModification Modifier and Type Method Description default ListModification<E>
QuasiListModification. instantiate(javafx.collections.ObservableList<E> list)
static <E> ListModification<E>
QuasiListModification. instantiate(QuasiListModification<? extends E> template, javafx.collections.ObservableList<E> list)
ListModification<E>
ListModification. trim()
ListModification<E>
ListModificationImpl. trim()
Methods in org.reactfx.collection that return types with arguments of type ListModification Modifier and Type Method Description default EventStream<ListModification<? extends E>>
LiveList. modifications()
Method parameters in org.reactfx.collection with type arguments of type ListModification Modifier and Type Method Description default void
LiveList. addModificationObserver(java.util.function.Consumer<? super ListModification<? extends E>> observer)
default Subscription
LiveList. observeModifications(java.util.function.Consumer<? super ListModification<? extends E>> observer)
default void
LiveList. removeModificationObserver(java.util.function.Consumer<? super ListModification<? extends E>> observer)
Constructor parameters in org.reactfx.collection with type arguments of type ListModification Constructor Description ModificationObserverWrapper(javafx.collections.ObservableList<T> list, java.util.function.Consumer<? super ListModification<? extends T>> delegate)
-