Package org.reactfx.collection
Interface ListModificationSequence<E>
-
- Type Parameters:
E
- type of list elements
- All Superinterfaces:
AbstractListModificationSequence<E,QuasiListModification<? extends E>>
,java.lang.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 forQuasiListChange
andListChangeAccumulator
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QuasiListChange<E>
asListChange()
May be destructive for this object.ListChangeAccumulator<E>
asListChangeAccumulator()
May be destructive for this object.-
Methods inherited from interface org.reactfx.collection.AbstractListModificationSequence
getModificationCount, getModifications, iterator
-
-
-
-
Method Detail
-
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.
-
-