Uses of Interface
org.reactfx.collection.LiveList
-
Packages that use LiveList Package Description org.reactfx.collection org.reactfx.value -
-
Uses of LiveList in org.reactfx.collection
Subinterfaces of LiveList in org.reactfx.collection Modifier and Type Interface Description interface
MemoizationList<E>
interface
ProperLiveList<E>
Trait to be mixed intoObservableBase
to obtain default implementation of someLiveList
methods and get additional helper methods for implementations of proper LiveList.interface
SuspendableList<E>
Classes in org.reactfx.collection that implement LiveList Modifier and Type Class Description (package private) class
DynamicallyMappedList<E,F>
class
LiveArrayList<E>
class
LiveListBase<E>
(package private) class
MappedList<E,F>
(package private) class
MemoizationListImpl<E>
private class
MemoizationListImpl.MemoizedView
(package private) class
SuspendableListWrapper<E>
(package private) class
ValAsList<T>
Methods in org.reactfx.collection that return LiveList Modifier and Type Method Description default <F> LiveList<F>
LiveList. map(java.util.function.Function<? super E,? extends F> f)
static <E,F>
LiveList<F>LiveList. map(javafx.collections.ObservableList<? extends E> list, java.util.function.Function<? super E,? extends F> f)
default <F> LiveList<F>
LiveList. mapDynamic(javafx.beans.value.ObservableValue<? extends java.util.function.Function<? super E,? extends F>> f)
static <E,F>
LiveList<F>LiveList. mapDynamic(javafx.collections.ObservableList<? extends E> list, javafx.beans.value.ObservableValue<? extends java.util.function.Function<? super E,? extends F>> f)
LiveList<E>
MemoizationList. memoizedItems()
LiveList<E>
MemoizationListImpl. memoizedItems()
static <E> LiveList<E>
LiveList. wrapVal(javafx.beans.value.ObservableValue<E> obs)
Returns a LiveList view of the given ObservableValueobs
. -
Uses of LiveList in org.reactfx.value
Methods in org.reactfx.value that return LiveList Modifier and Type Method Description default LiveList<T>
Val. asList()
-