Interface XPuttingCollection<E>
- All Superinterfaces:
CapacityCarrying
,CapacityExtendable
,Consumer<E>
,ExtendedCollection<E>
,OptimizableCollection
,Sized
,XAddingCollection<E>
- All Known Subinterfaces:
XBag<E>
,XBasicEnum<E>
,XBasicList<E>
,XBasicSequence<E>
,XBasicTable<K,V>
,XBasicTable.Keys<K,V>
,XChart<K,V>
,XChart.Keys<K,V>
,XCollection<E>
,XEnum<E>
,XExpandingEnum<E>
,XExpandingList<E>
,XExpandingSequence<E>
,XIncreasingEnum<E>
,XIncreasingList<E>
,XIncreasingSequence<E>
,XInputtingEnum<E>
,XInputtingList<E>
,XInputtingSequence<E>
,XLadder<E>
,XList<E>
,XMap<K,V>
,XMap.Keys<K,V>
,XPutGetBag<E>
,XPutGetCollection<E>
,XPutGetEnum<E>
,XPutGetList<E>
,XPutGetSequence<E>
,XPutGetSet<E>
,XPutGetSortation<E>
,XPuttingBag<E>
,XPuttingEnum<E>
,XPuttingList<E>
,XPuttingSequence<E>
,XPuttingSet<E>
,XPuttingSortation<E>
,XRank<E>
,XSequence<E>
,XSet<E>
,XSortation<E>
,XTable<K,V>
,XTable.Keys<K,V>
- All Known Implementing Classes:
ArrayCollector
,BulkList
,Collector
,EqBulkList
,EqHashEnum
,EqHashTable
,EqHashTable.Keys
,HashEnum
,HashTable
,HashTable.Keys
,LimitList
,LockedCollection
,LockedList
,LockedMap
,MutexSet
,OpenAdressingMiniSet
,Single
,SubCollector
,SubList
,SynchCollection
,SynchList
,SynchSet
public interface XPuttingCollection<E> extends XAddingCollection<E>
Putting aspect:
Ensure that all putted elements are contained in the collection
Ensure that all putted elements are contained in the collection
Examples: Set: Add all elements, overwriting equal already contained elements. Bag: Always add all elements (identical to add)
Note: Correspond's to old JDK collection's "add()" for single dimensional collections (which is conceptionally misleading) and "put()" for Map.
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
XPuttingCollection.Creator<E>
-
Method Summary
Modifier and Type Method Description boolean
nullPut()
boolean
put(E element)
XPuttingCollection<E>
putAll(E... elements)
XPuttingCollection<E>
putAll(E[] elements, int srcStartIndex, int srcLength)
XPuttingCollection<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