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