Interface XPuttingSet<E>
-
- All Superinterfaces:
CapacityCarrying,CapacityExtendable,Consumer<E>,ExtendedCollection<E>,OptimizableCollection,ReleasingCollection<E>,Sized,XAddingCollection<E>,XAddingSet<E>,XPuttingCollection<E>
- All Known Subinterfaces:
XBasicEnum<E>,XBasicTable<K,V>,XBasicTable.Keys<K,V>,XChart<K,V>,XChart.Keys<K,V>,XEnum<E>,XExpandingEnum<E>,XIncreasingEnum<E>,XInputtingEnum<E>,XMap<K,V>,XMap.Keys<K,V>,XPutGetEnum<E>,XPutGetSet<E>,XPuttingEnum<E>,XRank<E>,XSet<E>,XTable<K,V>,XTable.Keys<K,V>
- All Known Implementing Classes:
EqHashEnum,EqHashTable,EqHashTable.Keys,HashEnum,HashTable,HashTable.Keys,LockedMap,MutexSet,OpenAdressingMiniSet,Single,SynchSet
public interface XPuttingSet<E> extends XPuttingCollection<E>, XAddingSet<E>, ReleasingCollection<E>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceXPuttingSet.Creator<E>
-
Method Summary
Modifier and Type Method Description XPuttingSet<E>addAll(E... elements)XPuttingSet<E>addAll(E[] elements, int srcStartIndex, int srcLength)XPuttingSet<E>addAll(XGettingCollection<? extends E> elements)XPuttingSet<E>putAll(E... elements)XPuttingSet<E>putAll(E[] elements, int srcStartIndex, int srcLength)XPuttingSet<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.types.XAddingCollection
accept, add, collector, nullAdd
-
Methods inherited from interface one.microstream.collections.types.XPuttingCollection
nullPut, put
-
-
-
-
Method Detail
-
putAll
XPuttingSet<E> putAll(E... elements)
- Specified by:
putAllin interfaceXPuttingCollection<E>
-
putAll
XPuttingSet<E> putAll(E[] elements, int srcStartIndex, int srcLength)
- Specified by:
putAllin interfaceXPuttingCollection<E>
-
putAll
XPuttingSet<E> putAll(XGettingCollection<? extends E> elements)
- Specified by:
putAllin interfaceXPuttingCollection<E>
-
addAll
XPuttingSet<E> addAll(E... elements)
- Specified by:
addAllin interfaceXAddingCollection<E>- Specified by:
addAllin interfaceXAddingSet<E>
-
addAll
XPuttingSet<E> addAll(E[] elements, int srcStartIndex, int srcLength)
- Specified by:
addAllin interfaceXAddingCollection<E>- Specified by:
addAllin interfaceXAddingSet<E>
-
addAll
XPuttingSet<E> addAll(XGettingCollection<? extends E> elements)
- Specified by:
addAllin interfaceXAddingCollection<E>- Specified by:
addAllin interfaceXAddingSet<E>
-
-