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 interfaceXProcessingMap.Creator<K,V>static interfaceXProcessingMap.Keys<K,V>static interfaceXProcessingMap.Values<K,V>-
Nested classes/interfaces inherited from interface one.microstream.typing.Copyable
Copyable.Static
-
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()VremoveFor(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 java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface one.microstream.collections.interfaces.OptimizableCollection
optimize
-
Methods inherited from interface one.microstream.collections.interfaces.Truncateable
truncate
-
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
-
Methods inherited from interface one.microstream.collections.types.XGettingSet
iterate
-
-
-
-
Method Detail
-
copy
XProcessingMap<K,V> copy()
Description copied from interface:XGettingCollectionCreates 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:
copyin interfaceCopyable- Specified by:
copyin interfaceXGettingCollection<K>- Specified by:
copyin interfaceXGettingMap<K,V>- Specified by:
copyin interfaceXGettingSet<K>- Returns:
- a copy of this list
-
keys
XProcessingMap.Keys<K,V> keys()
- Specified by:
keysin interfaceXGettingMap<K,V>
-
values
XProcessingMap.Values<K,V> values()
- Specified by:
valuesin interfaceXGettingMap<K,V>
-
-