Interface XAddingSortation<E>
-
- All Superinterfaces:
CapacityCarrying
,CapacityExtendable
,Consumer<E>
,ExtendedCollection<E>
,ExtendedSequence<E>
,OptimizableCollection
,Sized
,Sorted<E>
,XAddingCollection<E>
,XAddingSequence<E>
- All Known Subinterfaces:
XChart.Keys<K,V>
,XLadder<E>
,XPutGetSortation<E>
,XPuttingSortation<E>
,XRank<E>
,XSortation<E>
public interface XAddingSortation<E> extends XAddingSequence<E>, Sorted<E>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
XAddingSortation.Factory<E>
-
Nested classes/interfaces inherited from interface one.microstream.collections.interfaces.ExtendedCollection
ExtendedCollection.Creator<E,C extends ExtendedCollection<E>>
-
Nested classes/interfaces inherited from interface one.microstream.collections.types.XAddingSequence
XAddingSequence.Creator<E>
-
-
Method Summary
Modifier and Type Method Description XAddingSortation<E>
addAll(E... elements)
XAddingSortation<E>
addAll(E[] elements, int srcStartIndex, int srcLength)
XAddingSortation<E>
addAll(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.sorting.Sorted
getComparator
-
Methods inherited from interface one.microstream.collections.types.XAddingCollection
accept, add, collector, nullAdd
-
-
-
-
Method Detail
-
addAll
XAddingSortation<E> addAll(E... elements)
- Specified by:
addAll
in interfaceXAddingCollection<E>
- Specified by:
addAll
in interfaceXAddingSequence<E>
-
addAll
XAddingSortation<E> addAll(E[] elements, int srcStartIndex, int srcLength)
- Specified by:
addAll
in interfaceXAddingCollection<E>
- Specified by:
addAll
in interfaceXAddingSequence<E>
-
addAll
XAddingSortation<E> addAll(XGettingCollection<? extends E> elements)
- Specified by:
addAll
in interfaceXAddingCollection<E>
- Specified by:
addAll
in interfaceXAddingSequence<E>
-
-