Interface XExtendingEnum<E>
-
- All Superinterfaces:
CapacityCarrying,CapacityExtendable,Consumer<E>,ExtendedCollection<E>,ExtendedSequence<E>,OptimizableCollection,Sized,XAddingCollection<E>,XAddingEnum<E>,XAddingSequence<E>,XAddingSet<E>,XExtendingSequence<E>,XPrependingEnum<E>,XPrependingSequence<E>
- All Known Subinterfaces:
XEnum<E>,XExpandingEnum<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 XExtendingEnum<E> extends XExtendingSequence<E>, XAddingEnum<E>, XPrependingEnum<E>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceXExtendingEnum.Creator<E>
-
Method Summary
Modifier and Type Method Description XExtendingEnum<E>addAll(E... elements)XExtendingEnum<E>addAll(E[] elements, int srcStartIndex, int srcLength)XExtendingEnum<E>addAll(XGettingCollection<? extends E> elements)XExtendingEnum<E>prependAll(E... elements)XExtendingEnum<E>prependAll(E[] elements, int srcStartIndex, int srcLength)XExtendingEnum<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.XPrependingSequence
nullPrepend, prepend
-
-
-
-
Method Detail
-
addAll
XExtendingEnum<E> addAll(E... elements)
- Specified by:
addAllin interfaceXAddingCollection<E>- Specified by:
addAllin interfaceXAddingEnum<E>- Specified by:
addAllin interfaceXAddingSequence<E>- Specified by:
addAllin interfaceXAddingSet<E>- Specified by:
addAllin interfaceXExtendingSequence<E>
-
addAll
XExtendingEnum<E> addAll(E[] elements, int srcStartIndex, int srcLength)
- Specified by:
addAllin interfaceXAddingCollection<E>- Specified by:
addAllin interfaceXAddingEnum<E>- Specified by:
addAllin interfaceXAddingSequence<E>- Specified by:
addAllin interfaceXAddingSet<E>- Specified by:
addAllin interfaceXExtendingSequence<E>
-
addAll
XExtendingEnum<E> addAll(XGettingCollection<? extends E> elements)
- Specified by:
addAllin interfaceXAddingCollection<E>- Specified by:
addAllin interfaceXAddingEnum<E>- Specified by:
addAllin interfaceXAddingSequence<E>- Specified by:
addAllin interfaceXAddingSet<E>- Specified by:
addAllin interfaceXExtendingSequence<E>
-
prependAll
XExtendingEnum<E> prependAll(E... elements)
- Specified by:
prependAllin interfaceXExtendingSequence<E>- Specified by:
prependAllin interfaceXPrependingEnum<E>- Specified by:
prependAllin interfaceXPrependingSequence<E>
-
prependAll
XExtendingEnum<E> prependAll(E[] elements, int srcStartIndex, int srcLength)
- Specified by:
prependAllin interfaceXExtendingSequence<E>- Specified by:
prependAllin interfaceXPrependingEnum<E>- Specified by:
prependAllin interfaceXPrependingSequence<E>
-
prependAll
XExtendingEnum<E> prependAll(XGettingCollection<? extends E> elements)
- Specified by:
prependAllin interfaceXExtendingSequence<E>- Specified by:
prependAllin interfaceXPrependingEnum<E>- Specified by:
prependAllin interfaceXPrependingSequence<E>
-
-