Interface XPrependingEnum<E>
-
- All Superinterfaces:
CapacityCarrying
,CapacityExtendable
,Consumer<E>
,ExtendedCollection<E>
,ExtendedSequence<E>
,OptimizableCollection
,Sized
,XPrependingSequence<E>
- All Known Subinterfaces:
XEnum<E>
,XExpandingEnum<E>
,XExtendingEnum<E>
,XIncreasingEnum<E>
,XInputtingEnum<E>
,XInsertingEnum<E>
,XTable<K,V>
,XTable.Keys<K,V>
- All Known Implementing Classes:
EqHashEnum
,EqHashTable
,EqHashTable.Keys
,HashEnum
,HashTable
,HashTable.Keys
,Single
public interface XPrependingEnum<E> extends XPrependingSequence<E>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
XPrependingEnum.Creator<E>
-
Method Summary
Modifier and Type Method Description XPrependingEnum<E>
prependAll(E... elements)
XPrependingEnum<E>
prependAll(E[] elements, int srcStartIndex, int srcLength)
XPrependingEnum<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.XPrependingSequence
nullPrepend, prepend
-
-
-
-
Method Detail
-
prependAll
XPrependingEnum<E> prependAll(E... elements)
- Specified by:
prependAll
in interfaceXPrependingSequence<E>
-
prependAll
XPrependingEnum<E> prependAll(E[] elements, int srcStartIndex, int srcLength)
- Specified by:
prependAll
in interfaceXPrependingSequence<E>
-
prependAll
XPrependingEnum<E> prependAll(XGettingCollection<? extends E> elements)
- Specified by:
prependAll
in interfaceXPrependingSequence<E>
-
-