Interface XGettingMap<K,V>
- All Superinterfaces:
CapacityCarrying,Copyable,ExtendedCollection<KeyValue<K,V>>,ExtendedMap<K,V>,Iterable<KeyValue<K,V>>,Sized,XGettingCollection<KeyValue<K,V>>,XGettingSet<KeyValue<K,V>>,XIterable<KeyValue<K,V>>,XJoinable<KeyValue<K,V>>
- All Known Subinterfaces:
XAddGetMap<K,V>,XBasicTable<K,V>,XChart<K,V>,XGettingTable<K,V>,XImmutableMap<K,V>,XImmutableTable<K,V>,XMap<K,V>,XProcessingMap<K,V>,XPutGetMap<K,V>,XTable<K,V>
- All Known Implementing Classes:
ConstHashTable,EmptyTable,EqConstHashTable,EqHashTable,HashTable,LockedGettingMap,LockedMap,MapView,TableView
public interface XGettingMap<K,V> extends ExtendedMap<K,V>, XGettingSet<KeyValue<K,V>>
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceXGettingMap.Bridge<K,V>static interfaceXGettingMap.Creator<K,V>static interfaceXGettingMap.EntriesBridge<K,V>static interfaceXGettingMap.Keys<K,V>static interfaceXGettingMap.Satellite<K,V>static interfaceXGettingMap.Values<K,V>Nested classes/interfaces inherited from interface one.microstream.collections.types.XIterable
XIterable.Executor<E> -
Method Summary
Modifier and Type Method Description XGettingMap<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.Vget(K key)XImmutableMap<K,V>immure()Provides an instance of an immutable collection type with equal behavior and data as this instance.XGettingMap.Keys<K,V>keys()KeyValue<K,V>lookup(K key)booleannullKeyAllowed()booleannullValuesAllowed()XGettingMap.EntriesBridge<K,V>old()XGettingMap.Bridge<K,V>oldMap()<C extends Consumer<? super V>>
Cquery(XIterable<? extends K> keys, C collector)VsearchValue(Predicate<? super K> keyPredicate)XGettingMap.Values<K,V>values()XGettingMap<K,V>view()Methods inherited from interface one.microstream.collections.interfaces.CapacityCarrying
isFull, maximumCapacity, remainingCapacityMethods inherited from interface one.microstream.collections.interfaces.ExtendedCollection
nullAllowedMethods 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
-
Method Details
-
get
-
lookup
-
searchValue
-
query
-
keys
XGettingMap.Keys<K,V> keys() -
values
XGettingMap.Values<K,V> values() -
copy
XGettingMap<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 interfaceXGettingSet<K>- Returns:
- a copy of this list
-
view
XGettingMap<K,V> view()- Specified by:
viewin interfaceXGettingCollection<K>
-
immure
XImmutableMap<K,V> immure()Provides an instance of an immutable collection type with equal behavior and data as this instance.If this instance already is of an immutable collection type, it returns itself.
- Specified by:
immurein interfaceXGettingCollection<K>- Specified by:
immurein interfaceXGettingSet<K>- Returns:
- an immutable copy of this collection instance.
-
old
XGettingMap.EntriesBridge<K,V> old()- Specified by:
oldin interfaceXGettingCollection<K>
-
oldMap
XGettingMap.Bridge<K,V> oldMap() -
nullKeyAllowed
boolean nullKeyAllowed() -
nullValuesAllowed
boolean nullValuesAllowed()
-