Package one.microstream.collections.old
Class AbstractOldRemovingList<E>
- java.lang.Object
-
- one.microstream.collections.old.AbstractOldGettingList<E>
-
- one.microstream.collections.old.AbstractOldRemovingList<E>
-
- All Implemented Interfaces:
Iterable<E>,Collection<E>,List<E>,OldCollection<E>,OldList<E>
- Direct Known Subclasses:
ListProcessor.OldListProcessor
public abstract class AbstractOldRemovingList<E> extends AbstractOldGettingList<E>
-
-
Constructor Summary
Constructors Constructor Description AbstractOldRemovingList()
-
Method Summary
Modifier and Type Method Description voidclear()XProcessingList<E>parent()Eremove(int index)booleanremove(Object o)booleanremoveAll(Collection<?> c)booleanretainAll(Collection<?> c)AbstractOldRemovingList<E>subList(int fromIndex, int toIndex)-
Methods inherited from class one.microstream.collections.old.AbstractOldGettingList
add, add, addAll, addAll, contains, containsAll, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, set, size, toArray, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
equals, hashCode, replaceAll, sort, spliterator, toArray
-
Methods inherited from interface one.microstream.collections.old.OldCollection
bla, toArray
-
-
-
-
Method Detail
-
parent
public XProcessingList<E> parent()
- Specified by:
parentin interfaceOldCollection<E>- Specified by:
parentin interfaceOldList<E>- Overrides:
parentin classAbstractOldGettingList<E>
-
clear
public void clear()
- Specified by:
clearin interfaceCollection<E>- Specified by:
clearin interfaceList<E>- Overrides:
clearin classAbstractOldGettingList<E>
-
remove
public boolean remove(Object o)
- Specified by:
removein interfaceCollection<E>- Specified by:
removein interfaceList<E>- Overrides:
removein classAbstractOldGettingList<E>
-
remove
public E remove(int index)
-
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAllin interfaceCollection<E>- Specified by:
removeAllin interfaceList<E>- Overrides:
removeAllin classAbstractOldGettingList<E>
-
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAllin interfaceCollection<E>- Specified by:
retainAllin interfaceList<E>- Overrides:
retainAllin classAbstractOldGettingList<E>
-
subList
public AbstractOldRemovingList<E> subList(int fromIndex, int toIndex)
-
-