Interface XImmutableTable.Keys<K,V>
- All Superinterfaces:
CapacityCarrying
,ComponentType
,Copyable
,ExtendedCollection<K>
,ExtendedSequence<K>
,HashImmutable
,Immutable
,Iterable<K>
,Sized
,ThreadSafe
,XGettingCollection<K>
,XGettingEnum<K>
,XGettingMap.Keys<K,V>
,XGettingMap.Satellite<K,V>
,XGettingSequence<K>
,XGettingSet<K>
,XGettingTable.Keys<K,V>
,XGettingTable.Satellite<K,V>
,XImmutableCollection<K>
,XImmutableEnum<K>
,XImmutableMap.Keys<K,V>
,XImmutableMap.Satellite<K,V>
,XImmutableSequence<K>
,XImmutableSet<K>
,XIndexIterable<K>
,XIterable<K>
,XJoinable<K>
- All Known Implementing Classes:
ConstHashTable.Keys
,EqConstHashTable.Keys
- Enclosing interface:
- XImmutableTable<K,V>
public static interface XImmutableTable.Keys<K,V> extends XImmutableMap.Keys<K,V>, XGettingTable.Keys<K,V>, XImmutableEnum<K>
-
Nested Class Summary
Nested classes/interfaces inherited from interface one.microstream.collections.interfaces.ExtendedCollection
ExtendedCollection.Creator<E,C extends ExtendedCollection<E>>
Nested classes/interfaces inherited from interface one.microstream.collections.types.XGettingCollection
XGettingCollection.Creator<E>
Nested classes/interfaces inherited from interface one.microstream.collections.types.XGettingEnum
XGettingEnum.Creator<E>
Nested classes/interfaces inherited from interface one.microstream.collections.types.XGettingSequence
XGettingSequence.Factory<E>
Nested classes/interfaces inherited from interface one.microstream.collections.types.XGettingSet
XGettingSet.Creator<E>
Nested classes/interfaces inherited from interface one.microstream.collections.types.XImmutableEnum
XImmutableEnum.Factory<E>
Nested classes/interfaces inherited from interface one.microstream.collections.types.XImmutableSet
XImmutableSet.Factory<E>
Nested classes/interfaces inherited from interface one.microstream.collections.types.XIterable
XIterable.Executor<E>
-
Method Summary
Modifier and Type Method Description XImmutableEnum<K>
copy()
Creates a true copy of this collection which references the same elements as this collection does at the time the method is called.XImmutableTable<K,V>
parent()
Methods inherited from interface one.microstream.collections.interfaces.CapacityCarrying
isFull, maximumCapacity, remainingCapacity
Methods inherited from interface one.microstream.collections.interfaces.ExtendedCollection
nullAllowed
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, hashCode, hasVolatileElements, intersect, intSize, iterator, join, max, min, nullContained, old, search, seek, size, toArray, toArray, union
Methods inherited from interface one.microstream.collections.types.XGettingEnum
immure, iterate, range, toReversed, view, view
Methods inherited from interface one.microstream.collections.types.XGettingSequence
at, copySelection, first, get, hasIndex, indexBy, indexOf, isSorted, last, lastIndexBy, lastIndexOf, maxIndex, minIndex, peek, poll, scan
Methods inherited from interface one.microstream.collections.types.XImmutableEnum
immure, toReversed
-
Method Details
-
parent
XImmutableTable<K,V> parent()- Specified by:
parent
in interfaceXGettingMap.Satellite<K,V>
- Specified by:
parent
in interfaceXGettingTable.Keys<K,V>
- Specified by:
parent
in interfaceXGettingTable.Satellite<K,V>
- Specified by:
parent
in interfaceXImmutableMap.Satellite<K,V>
-
copy
XImmutableEnum<K> 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 interfaceXGettingEnum<K>
- Specified by:
copy
in interfaceXGettingSequence<K>
- Specified by:
copy
in interfaceXGettingSet<K>
- Specified by:
copy
in interfaceXImmutableCollection<K>
- Specified by:
copy
in interfaceXImmutableEnum<K>
- Specified by:
copy
in interfaceXImmutableSequence<K>
- Specified by:
copy
in interfaceXImmutableSet<K>
- Returns:
- a copy of this list
-