Package one.microstream.collections.old
Class AbstractBridgeXList<E>
- java.lang.Object
-
- one.microstream.collections.old.AbstractOldGettingList<E>
-
- one.microstream.collections.old.AbstractOldSettingList<E>
-
- one.microstream.collections.old.AbstractBridgeXList<E>
-
- All Implemented Interfaces:
Iterable<E>
,Collection<E>
,List<E>
,OldCollection<E>
,OldList<E>
- Direct Known Subclasses:
ArrayCollector.OldArrayCollector
,BulkList.OldBulkList
,EqBulkList.OldBulkList
,LimitList.OldLimitList
,LockedList.OldMutexList
,SynchList.OldSynchList
public abstract class AbstractBridgeXList<E> extends AbstractOldSettingList<E>
-
-
Constructor Summary
Constructors Constructor Description AbstractBridgeXList()
-
Method Summary
Modifier and Type Method Description void
add(int index, E element)
boolean
add(E e)
boolean
addAll(int index, Collection<? extends E> c)
boolean
addAll(Collection<? extends E> c)
void
clear()
XList<E>
parent()
E
remove(int index)
boolean
remove(Object o)
boolean
removeAll(Collection<?> c)
boolean
retainAll(Collection<?> c)
AbstractBridgeXList<E>
subList(int fromIndex, int toIndex)
-
Methods inherited from class one.microstream.collections.old.AbstractOldSettingList
set
-
Methods inherited from class one.microstream.collections.old.AbstractOldGettingList
contains, containsAll, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, 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 XList<E> parent()
- Specified by:
parent
in interfaceOldCollection<E>
- Specified by:
parent
in interfaceOldList<E>
- Overrides:
parent
in classAbstractOldSettingList<E>
-
add
public boolean add(E e)
- Specified by:
add
in interfaceCollection<E>
- Specified by:
add
in interfaceList<E>
- Overrides:
add
in classAbstractOldGettingList<E>
-
add
public void add(int index, E element)
-
addAll
public boolean addAll(Collection<? extends E> c)
- Specified by:
addAll
in interfaceCollection<E>
- Specified by:
addAll
in interfaceList<E>
- Overrides:
addAll
in classAbstractOldGettingList<E>
-
addAll
public boolean addAll(int index, Collection<? extends E> c)
-
clear
public void clear()
- Specified by:
clear
in interfaceCollection<E>
- Specified by:
clear
in interfaceList<E>
- Overrides:
clear
in classAbstractOldGettingList<E>
-
remove
public boolean remove(Object o)
- Specified by:
remove
in interfaceCollection<E>
- Specified by:
remove
in interfaceList<E>
- Overrides:
remove
in classAbstractOldGettingList<E>
-
remove
public E remove(int index)
-
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAll
in interfaceCollection<E>
- Specified by:
removeAll
in interfaceList<E>
- Overrides:
removeAll
in classAbstractOldGettingList<E>
-
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAll
in interfaceCollection<E>
- Specified by:
retainAll
in interfaceList<E>
- Overrides:
retainAll
in classAbstractOldGettingList<E>
-
subList
public AbstractBridgeXList<E> subList(int fromIndex, int toIndex)
-
-