Interface XInsertingList<E>
-
- All Superinterfaces:
CapacityCarrying,CapacityExtendable,Consumer<E>,ExtendedBag<E>,ExtendedCollection<E>,ExtendedList<E>,ExtendedSequence<E>,OptimizableCollection,Sized,XAddingBag<E>,XAddingCollection<E>,XAddingList<E>,XAddingSequence<E>,XExtendingList<E>,XExtendingSequence<E>,XInsertingSequence<E>,XPrependingList<E>,XPrependingSequence<E>
public interface XInsertingList<E> extends XInsertingSequence<E>, XExtendingList<E>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceXInsertingList.Creator<E>-
Nested classes/interfaces inherited from interface one.microstream.collections.types.XAddingBag
XAddingBag.Factory<E>
-
-
Method Summary
Modifier and Type Method Description XInsertingList<E>addAll(E... elements)XInsertingList<E>addAll(E[] elements, int srcStartIndex, int srcLength)XInsertingList<E>addAll(XGettingCollection<? extends E> elements)XInsertingList<E>prependAll(E... elements)XInsertingList<E>prependAll(E[] elements, int srcStartIndex, int srcLength)XInsertingList<E>prependAll(XGettingCollection<? extends E> elements)-
Methods inherited from interface one.microstream.collections.interfaces.CapacityCarrying
isFull, maximumCapacity, remainingCapacity
-
Methods inherited from interface one.microstream.collections.interfaces.CapacityExtendable
currentCapacity, currentFreeCapacity, ensureCapacity, ensureFreeCapacity
-
Methods inherited from interface one.microstream.collections.interfaces.ExtendedCollection
hasVolatileElements, nullAllowed
-
Methods inherited from interface one.microstream.collections.interfaces.OptimizableCollection
optimize
-
Methods inherited from interface one.microstream.collections.types.XAddingCollection
accept, add, collector, nullAdd
-
Methods inherited from interface one.microstream.collections.types.XInsertingSequence
insert, insertAll, insertAll, insertAll, nullInsert
-
Methods inherited from interface one.microstream.collections.types.XPrependingSequence
nullPrepend, prepend
-
-
-
-
Method Detail
-
addAll
XInsertingList<E> addAll(E... elements)
- Specified by:
addAllin interfaceXAddingBag<E>- Specified by:
addAllin interfaceXAddingCollection<E>- Specified by:
addAllin interfaceXAddingList<E>- Specified by:
addAllin interfaceXAddingSequence<E>- Specified by:
addAllin interfaceXExtendingList<E>- Specified by:
addAllin interfaceXExtendingSequence<E>- Specified by:
addAllin interfaceXInsertingSequence<E>
-
addAll
XInsertingList<E> addAll(E[] elements, int srcStartIndex, int srcLength)
- Specified by:
addAllin interfaceXAddingBag<E>- Specified by:
addAllin interfaceXAddingCollection<E>- Specified by:
addAllin interfaceXAddingList<E>- Specified by:
addAllin interfaceXAddingSequence<E>- Specified by:
addAllin interfaceXExtendingList<E>- Specified by:
addAllin interfaceXExtendingSequence<E>- Specified by:
addAllin interfaceXInsertingSequence<E>
-
addAll
XInsertingList<E> addAll(XGettingCollection<? extends E> elements)
- Specified by:
addAllin interfaceXAddingBag<E>- Specified by:
addAllin interfaceXAddingCollection<E>- Specified by:
addAllin interfaceXAddingList<E>- Specified by:
addAllin interfaceXAddingSequence<E>- Specified by:
addAllin interfaceXExtendingList<E>- Specified by:
addAllin interfaceXExtendingSequence<E>- Specified by:
addAllin interfaceXInsertingSequence<E>
-
prependAll
XInsertingList<E> prependAll(E... elements)
- Specified by:
prependAllin interfaceXExtendingList<E>- Specified by:
prependAllin interfaceXExtendingSequence<E>- Specified by:
prependAllin interfaceXInsertingSequence<E>- Specified by:
prependAllin interfaceXPrependingList<E>- Specified by:
prependAllin interfaceXPrependingSequence<E>
-
prependAll
XInsertingList<E> prependAll(E[] elements, int srcStartIndex, int srcLength)
- Specified by:
prependAllin interfaceXExtendingList<E>- Specified by:
prependAllin interfaceXExtendingSequence<E>- Specified by:
prependAllin interfaceXInsertingSequence<E>- Specified by:
prependAllin interfaceXPrependingList<E>- Specified by:
prependAllin interfaceXPrependingSequence<E>
-
prependAll
XInsertingList<E> prependAll(XGettingCollection<? extends E> elements)
- Specified by:
prependAllin interfaceXExtendingList<E>- Specified by:
prependAllin interfaceXExtendingSequence<E>- Specified by:
prependAllin interfaceXInsertingSequence<E>- Specified by:
prependAllin interfaceXPrependingList<E>- Specified by:
prependAllin interfaceXPrependingSequence<E>
-
-