Package org.reactfx.collection
Interface ListModificationSequence<E>
- Type Parameters:
E
- type of list elements
- All Superinterfaces:
AbstractListModificationSequence<E,
,QuasiListModification<? extends E>> Iterable<QuasiListModification<? extends E>>
- All Known Subinterfaces:
QuasiListChange<E>
- All Known Implementing Classes:
ListChangeAccumulator
,QuasiListChangeImpl
public interface ListModificationSequence<E>
extends AbstractListModificationSequence<E,QuasiListModification<? extends E>>
Common supertype for
QuasiListChange
and ListChangeAccumulator
.-
Method Summary
Modifier and TypeMethodDescriptionMay be destructive for this object.May be destructive for this object.Methods inherited from interface org.reactfx.collection.AbstractListModificationSequence
getModificationCount, getModifications, iterator
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Method Details
-
asListChange
QuasiListChange<E> asListChange()May be destructive for this object. Therefore, this object should not be used after the call to this method, unless stated otherwise by the implementing class/interface. -
asListChangeAccumulator
ListChangeAccumulator<E> asListChangeAccumulator()May be destructive for this object. Therefore, this object should not be used after the call to this method, unless stated otherwise by the implementing class/interface.
-