Interface XProcessingMap<K,V>
- All Superinterfaces:
CapacityCarrying
,Clearable
,ConsolidatableCollection
,Copyable
,ExtendedCollection<KeyValue<K,V>>
,ExtendedMap<K,V>
,Iterable<KeyValue<K,V>>
,OptimizableCollection
,Sized
,Truncateable
,XGettingCollection<KeyValue<K,V>>
,XGettingMap<K,V>
,XGettingSet<KeyValue<K,V>>
,XIterable<KeyValue<K,V>>
,XJoinable<KeyValue<K,V>>
,XRemovingMap<K,V>
- All Known Subinterfaces:
XBasicTable<K,V>
,XChart<K,V>
,XMap<K,V>
,XTable<K,V>
- All Known Implementing Classes:
EqHashTable
,HashTable
,LockedMap
public interface XProcessingMap<K,V> extends XRemovingMap<K,V>, XGettingMap<K,V>
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
XProcessingMap.Creator<K,V>
static interface
XProcessingMap.Keys<K,V>
static interface
XProcessingMap.Values<K,V>
Nested classes/interfaces inherited from interface one.microstream.collections.types.XGettingMap
XGettingMap.Bridge<K,V>, XGettingMap.EntriesBridge<K,V>, XGettingMap.Satellite<K,V>
Nested classes/interfaces inherited from interface one.microstream.collections.types.XIterable
XIterable.Executor<E>
Nested classes/interfaces inherited from interface one.microstream.collections.types.XRemovingMap
XRemovingMap.Factory<K,V>
-
Method Summary
Modifier and Type Method Description XProcessingMap<K,V>
copy()
Creates a true copy of this collection which references the same elements as this collection does at the time the method is called.XProcessingMap.Keys<K,V>
keys()
V
removeFor(K key)
XProcessingMap.Values<K,V>
values()
Methods inherited from interface one.microstream.collections.interfaces.CapacityCarrying
isFull, maximumCapacity, remainingCapacity
Methods inherited from interface one.microstream.collections.interfaces.ConsolidatableCollection
consolidate
Methods inherited from interface one.microstream.collections.interfaces.ExtendedCollection
nullAllowed
Methods inherited from interface one.microstream.collections.interfaces.OptimizableCollection
optimize
Methods inherited from interface one.microstream.collections.types.XGettingCollection
applies, contains, containsAll, containsId, containsSearched, copyTo, count, countBy, distinct, distinct, equality, equals, equals, equalsContent, except, filterTo, get, hashCode, hasVolatileElements, intersect, intSize, iterator, join, max, min, nullContained, search, seek, size, toArray, toArray, union
Methods inherited from interface one.microstream.collections.types.XGettingMap
get, immure, lookup, nullKeyAllowed, nullValuesAllowed, old, oldMap, query, searchValue, view
-
Method Details
-
removeFor
-
copy
XProcessingMap<K,V> copy()Description copied from interface:XGettingCollection
Creates a true copy of this collection which references the same elements as this collection does at the time the method is called. The elements themselves are NOT copied (no deep copying).
The type of the returned set is the same as of this list if possible.- Specified by:
copy
in interfaceCopyable
- Specified by:
copy
in interfaceXGettingCollection<K>
- Specified by:
copy
in interfaceXGettingMap<K,V>
- Specified by:
copy
in interfaceXGettingSet<K>
- Returns:
- a copy of this list
-
keys
XProcessingMap.Keys<K,V> keys()- Specified by:
keys
in interfaceXGettingMap<K,V>
-
values
XProcessingMap.Values<K,V> values()- Specified by:
values
in interfaceXGettingMap<K,V>
-