Interface XAddingTable<K,V>
-
- All Superinterfaces:
CapacityCarrying
,CapacityExtendable
,Consumer<KeyValue<K,V>>
,ExtendedCollection<KeyValue<K,V>>
,ExtendedMap<K,V>
,ExtendedSequence<KeyValue<K,V>>
,OptimizableCollection
,Sized
,XAddingCollection<KeyValue<K,V>>
,XAddingMap<K,V>
,XAddingSequence<KeyValue<K,V>>
- All Known Subinterfaces:
XBasicTable<K,V>
,XChart<K,V>
,XTable<K,V>
- All Known Implementing Classes:
EqHashTable
,HashTable
public interface XAddingTable<K,V> extends XAddingMap<K,V>, XAddingSequence<KeyValue<K,V>>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
XAddingTable.Creator<K,V>
-
Method Summary
-
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.XAddingMap
add, nullKeyAllowed, nullValuesAllowed, set, valueSet
-
-
-
-
Method Detail
-
addAll
XAddingTable<K,V> addAll(KeyValue<K,V>... elements)
- Specified by:
addAll
in interfaceXAddingCollection<K>
- Specified by:
addAll
in interfaceXAddingSequence<K>
-
addAll
XAddingTable<K,V> addAll(KeyValue<K,V>[] elements, int srcStartIndex, int srcLength)
- Specified by:
addAll
in interfaceXAddingCollection<K>
- Specified by:
addAll
in interfaceXAddingSequence<K>
-
addAll
XAddingTable<K,V> addAll(XGettingCollection<? extends KeyValue<K,V>> elements)
- Specified by:
addAll
in interfaceXAddingCollection<K>
- Specified by:
addAll
in interfaceXAddingSequence<K>
-
-