Package one.microstream.collections
Class ConstHashTable.Values
java.lang.Object
one.microstream.collections.ConstHashTable.Values
- All Implemented Interfaces:
Iterable<V>,CapacityCarrying,ExtendedBag<V>,ExtendedCollection<V>,ExtendedList<V>,ExtendedSequence<V>,Sized,XGettingBag<V>,XGettingCollection<V>,XGettingList<V>,XGettingMap.Satellite<K,V>,XGettingMap.Values<K,V>,XGettingSequence<V>,XGettingTable.Satellite<K,V>,XGettingTable.Values<K,V>,XImmutableBag<V>,XImmutableCollection<V>,XImmutableList<V>,XImmutableMap.Satellite<K,V>,XImmutableMap.Values<K,V>,XImmutableSequence<V>,XImmutableTable.Satellite<K,V>,XImmutableTable.Values<K,V>,XIndexIterable<V>,XIterable<V>,XJoinable<V>,ThreadSafe,HashImmutable,ComponentType,Copyable,Immutable
- Enclosing class:
- ConstHashTable<K,V>
public final class ConstHashTable.Values extends Object implements XImmutableTable.Values<K,V>
-
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.XGettingBag
XGettingBag.Factory<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.XGettingList
XGettingList.Factory<E>Nested classes/interfaces inherited from interface one.microstream.collections.types.XImmutableBag
XImmutableBag.Factory<E>Nested classes/interfaces inherited from interface one.microstream.collections.types.XImmutableList
XImmutableList.Factory<E>Nested classes/interfaces inherited from interface one.microstream.collections.types.XIterable
XIterable.Executor<E> -
Constructor Summary
Constructors Constructor Description Values() -
Method Summary
Modifier and Type Method Description booleanapplies(Predicate<? super V> predicate)Vat(long index)booleancontains(V value)booleancontainsAll(XGettingCollection<? extends V> values)booleancontainsId(V value)Special version of contains() that guarantees to use identity comparison (" == ") when searching for the given element regardless of the collection's internal logic.
This method has the same behavior asXGettingCollection.containsSearched(Predicate)with aPredicateimplementation that checks for object identity.booleancontainsSearched(Predicate<? super V> predicate)XImmutableList<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.<T extends Consumer<? super V>>
TcopySelection(T target, long... indices)<T extends Consumer<? super V>>
TcopyTo(T target)longcount(V value)longcountBy(Predicate<? super V> predicate)<T extends Consumer<? super V>>
Tdistinct(T target)<T extends Consumer<? super V>>
Tdistinct(T target, Equalator<? super V> equalator)Equalator<? super V>equality()booleanequals(XGettingCollection<? extends V> samples, Equalator<? super V> equalator)Returnstrueif the passed collection is of the same type as this collection andthis.equalsContent(list, equalator)yieldstrue.booleanequalsContent(XGettingCollection<? extends V> samples, Equalator<? super V> equalator)Returnstrueif all elements of this list and the passed list are sequentially equal as defined by the passed equalator.<T extends Consumer<? super V>>
Texcept(XGettingCollection<? extends V> other, Equalator<? super V> equalator, T target)<T extends Consumer<? super V>>
TfilterTo(T target, Predicate<? super V> predicate)Vfirst()Vget()Gets one element from the collection.booleanhasVolatileElements()Tells if this collection contains volatile elements.
An element is volatile, if it can become no longer reachable by the collection without being removed from the collection.XImmutableList<V>immure()Provides an instance of an immutable collection type with equal behavior and data as this instance.longindexBy(Predicate<? super V> predicate)longindexOf(V value)<T extends Consumer<? super V>>
Tintersect(XGettingCollection<? extends V> other, Equalator<? super V> equalator, T target)booleanisEmpty()booleanisFull()Returns true if the current capacity cannot be increased any more.booleanisSorted(Comparator<? super V> comparator)<P extends Consumer<? super V>>
Piterate(P procedure)<P extends IndexedAcceptor<? super V>>
PiterateIndexed(P procedure)Iterator<V>iterator()<A> Ajoin(BiConsumer<? super V,? super A> joiner, A aggregate)Vlast()longlastIndexBy(Predicate<? super V> predicate)longlastIndexOf(V value)ListIterator<V>listIterator()ListIterator<V>listIterator(long index)Vmax(Comparator<? super V> comparator)longmaximumCapacity()Returns the maximum amount of elements this carrier instance can contain.
The actual value may be depend on the configuration of the concrete instance or may depend only on the implementation of the carrier (meaning it is constant for all instances of the implementation, e.g.longmaxIndex(Comparator<? super V> comparator)Vmin(Comparator<? super V> comparator)longminIndex(Comparator<? super V> comparator)booleannullAllowed()booleannullContained()OldList<V>old()ConstHashTable<K,V>parent()Vpeek()Vpoll()XImmutableList<V>range(long fromIndex, long toIndex)longremainingCapacity()Returns the amount of elements this carrier instance can collect before reaching its maximimum capacity.longscan(Predicate<? super V> predicate)Iterates through the collection and returns the index of the last element that the passedPredicateapplied to ("scanning").Vsearch(Predicate<? super V> predicate)Vseek(V sample)Returns the first contained element matching the passed sample as defined by the collection's equality logic or null, if no fitting element is contained.longsize()Object[]toArray()V[]toArray(Class<V> type)ConstHashTable.ValuestoReversed()StringtoString()<T extends Consumer<? super V>>
Tunion(XGettingCollection<? extends V> other, Equalator<? super V> equalator, T target)XImmutableList<V>view()XImmutableList<V>view(long fromIndex, long toIndex)Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface one.microstream.collections.types.XGettingCollection
equals, hashCode, intSize
-
Constructor Details
-
Values
public Values()
-
-
Method Details
-
equality
- Specified by:
equalityin interfaceXGettingCollection<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 interfaceXGettingBag<V>- Specified by:
copyin interfaceXGettingCollection<V>- Specified by:
copyin interfaceXGettingList<V>- Specified by:
copyin interfaceXGettingSequence<V>- Specified by:
copyin interfaceXGettingTable.Values<K,V>- Specified by:
copyin interfaceXImmutableBag<V>- Specified by:
copyin interfaceXImmutableCollection<V>- Specified by:
copyin interfaceXImmutableList<V>- Specified by:
copyin interfaceXImmutableSequence<V>- Specified by:
copyin interfaceXImmutableTable.Values<K,V>- Returns:
- a copy of this list
-
iterate
-
join
-
iterateIndexed
- Specified by:
iterateIndexedin interfaceXIndexIterable<V>
-
toReversed
- Specified by:
toReversedin interfaceXGettingList<V>- Specified by:
toReversedin interfaceXGettingSequence<V>- Specified by:
toReversedin interfaceXImmutableList<V>- Specified by:
toReversedin interfaceXImmutableSequence<V>
-
containsSearched
- Specified by:
containsSearchedin interfaceXGettingCollection<V>
-
applies
- Specified by:
appliesin interfaceXGettingCollection<V>
-
contains
- Specified by:
containsin interfaceXGettingCollection<V>
-
containsAll
- Specified by:
containsAllin interfaceXGettingCollection<V>
-
containsId
Description copied from interface:XGettingCollectionSpecial version of contains() that guarantees to use identity comparison (" == ") when searching for the given element regardless of the collection's internal logic.
This method has the same behavior asXGettingCollection.containsSearched(Predicate)with aPredicateimplementation that checks for object identity. The only difference is a performance and usability advantage- Specified by:
containsIdin interfaceXGettingCollection<V>- Parameters:
value- the element to be searched in the collection by identity.- Returns:
- whether this collection contains exactely the given element.
-
copyTo
- Specified by:
copyToin interfaceXGettingCollection<V>
-
filterTo
- Specified by:
filterToin interfaceXGettingCollection<V>
-
count
- Specified by:
countin interfaceXGettingCollection<V>
-
countBy
- Specified by:
countByin interfaceXGettingCollection<V>
-
distinct
- Specified by:
distinctin interfaceXGettingCollection<V>
-
distinct
- Specified by:
distinctin interfaceXGettingCollection<V>
-
equals
public final boolean equals(XGettingCollection<? extends V> samples, Equalator<? super V> equalator)Description copied from interface:XGettingCollectionReturnstrueif the passed collection is of the same type as this collection andthis.equalsContent(list, equalator)yieldstrue.- Specified by:
equalsin interfaceXGettingCollection<V>
-
equalsContent
public final boolean equalsContent(XGettingCollection<? extends V> samples, Equalator<? super V> equalator)Description copied from interface:XGettingCollectionReturnstrueif all elements of this list and the passed list are sequentially equal as defined by the passed equalator.Note that for colletion types that don't have a defined order of elements, this method is hardly usable (as is
XGettingCollection.equals(Object)for them as defined inCollection). The core problem of comparing collections that have no defined order is that they aren't really reliably comparable to any other collection.- Specified by:
equalsContentin interfaceXGettingCollection<V>equalator- the equalator to use to determine the equality of each element- Returns:
trueif this list is equal to the passed list, false otherwise
-
except
public final <T extends Consumer<? super V>> T except(XGettingCollection<? extends V> other, Equalator<? super V> equalator, T target)- Specified by:
exceptin interfaceXGettingCollection<V>
-
hasVolatileElements
public final boolean hasVolatileElements()Description copied from interface:XGettingCollectionTells if this collection contains volatile elements.
An element is volatile, if it can become no longer reachable by the collection without being removed from the collection. Examples areWeakReferenceofSoftReferenceor implementations of collection entries that remove the element contained in an entry by some means outside the collection.
Note thatWeakReferenceinstances that are added to a a simple (non-volatile) implementation of a collection do NOT make the collection volatile, as the elements themselves (the reference instances) are still strongly referenced.- Specified by:
hasVolatileElementsin interfaceExtendedCollection<V>- Specified by:
hasVolatileElementsin interfaceXGettingCollection<V>- Returns:
trueif the collection contains volatile elements.
-
intersect
public final <T extends Consumer<? super V>> T intersect(XGettingCollection<? extends V> other, Equalator<? super V> equalator, T target)- Specified by:
intersectin interfaceXGettingCollection<V>
-
isEmpty
public final boolean isEmpty() -
iterator
-
max
- Specified by:
maxin interfaceXGettingCollection<V>
-
min
- Specified by:
minin interfaceXGettingCollection<V>
-
nullAllowed
public final boolean nullAllowed()- Specified by:
nullAllowedin interfaceExtendedCollection<V>
-
nullContained
public final boolean nullContained()- Specified by:
nullContainedin interfaceXGettingCollection<V>
-
old
- Specified by:
oldin interfaceXGettingCollection<V>- Specified by:
oldin interfaceXGettingList<V>
-
seek
Description copied from interface:XGettingCollectionReturns the first contained element matching the passed sample as defined by the collection's equality logic or null, if no fitting element is contained. (For collections using referential equality, this method is basically just a variation ofXGettingCollection.contains(Object)with a different return type. For collections with data-dependant equality, the returned element might be the same as the passed one or a data-wise equal one, depending on the content of the collection)- Specified by:
seekin interfaceXGettingCollection<V>
-
search
- Specified by:
searchin interfaceXGettingCollection<V>
-
size
public final long size()- Specified by:
sizein interfaceSized- Specified by:
sizein interfaceXGettingCollection<V>
-
maximumCapacity
public final long maximumCapacity()Description copied from interface:CapacityCarryingReturns the maximum amount of elements this carrier instance can contain.
The actual value may be depend on the configuration of the concrete instance or may depend only on the implementation of the carrier (meaning it is constant for all instances of the implementation, e.g.Integer.MAX_VALUE)- Specified by:
maximumCapacityin interfaceCapacityCarrying- Returns:
- the maximum amount of elements this carrier instance can contain.
-
isFull
public final boolean isFull()Description copied from interface:CapacityCarryingReturns true if the current capacity cannot be increased any more.- Specified by:
isFullin interfaceCapacityCarrying
-
remainingCapacity
public final long remainingCapacity()Description copied from interface:CapacityCarryingReturns the amount of elements this carrier instance can collect before reaching its maximimum capacity.- Specified by:
remainingCapacityin interfaceCapacityCarrying
-
toString
-
toArray
- Specified by:
toArrayin interfaceXGettingCollection<V>
-
toArray
- Specified by:
toArrayin interfaceXGettingCollection<V>
-
union
public final <T extends Consumer<? super V>> T union(XGettingCollection<? extends V> other, Equalator<? super V> equalator, T target)- Specified by:
unionin interfaceXGettingCollection<V>
-
parent
- Specified by:
parentin interfaceXGettingMap.Satellite<K,V>- Specified by:
parentin interfaceXGettingTable.Satellite<K,V>- Specified by:
parentin interfaceXGettingTable.Values<K,V>- Specified by:
parentin interfaceXImmutableMap.Satellite<K,V>- Specified by:
parentin interfaceXImmutableTable.Satellite<K,V>- Specified by:
parentin interfaceXImmutableTable.Values<K,V>
-
view
- Specified by:
viewin interfaceXGettingList<V>- Specified by:
viewin interfaceXGettingSequence<V>- Specified by:
viewin interfaceXImmutableList<V>
-
listIterator
- Specified by:
listIteratorin interfaceXGettingList<V>
-
listIterator
- Specified by:
listIteratorin interfaceXGettingList<V>
-
range
- Specified by:
rangein interfaceXGettingList<V>- Specified by:
rangein interfaceXGettingSequence<V>- Specified by:
rangein interfaceXImmutableList<V>
-
immure
Description copied from interface:XGettingCollectionProvides 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 interfaceXGettingBag<V>- Specified by:
immurein interfaceXGettingCollection<V>- Specified by:
immurein interfaceXGettingList<V>- Specified by:
immurein interfaceXGettingSequence<V>- Specified by:
immurein interfaceXImmutableBag<V>- Specified by:
immurein interfaceXImmutableCollection<V>- Specified by:
immurein interfaceXImmutableList<V>- Specified by:
immurein interfaceXImmutableSequence<V>- Returns:
- an immutable copy of this collection instance.
- See Also:
XImmutableCollection.copy()
-
view
- Specified by:
viewin interfaceXGettingBag<V>- Specified by:
viewin interfaceXGettingCollection<V>- Specified by:
viewin interfaceXGettingList<V>- Specified by:
viewin interfaceXGettingSequence<V>- Specified by:
viewin interfaceXImmutableList<V>
-
copySelection
- Specified by:
copySelectionin interfaceXGettingSequence<V>
-
at
- Specified by:
atin interfaceXGettingSequence<V>
-
get
Description copied from interface:XGettingCollectionGets one element from the collection. If the collection is not orderedXGettingSequence, then it is undefined which element is returned. If the collection is ordered, the element at index 0 is returned.- Specified by:
getin interfaceXGettingCollection<V>- Specified by:
getin interfaceXGettingSequence<V>- Returns:
- the first / any element.
- See Also:
XGettingSequence.at(long),XGettingSequence.first(),XGettingSequence.last()
-
first
- Specified by:
firstin interfaceXGettingSequence<V>
-
last
- Specified by:
lastin interfaceXGettingSequence<V>
-
poll
- Specified by:
pollin interfaceXGettingSequence<V>
-
peek
- Specified by:
peekin interfaceXGettingSequence<V>
-
indexOf
- Specified by:
indexOfin interfaceXGettingSequence<V>
-
indexBy
- Specified by:
indexByin interfaceXGettingSequence<V>
-
isSorted
- Specified by:
isSortedin interfaceXGettingSequence<V>
-
lastIndexOf
- Specified by:
lastIndexOfin interfaceXGettingSequence<V>
-
lastIndexBy
- Specified by:
lastIndexByin interfaceXGettingSequence<V>
-
maxIndex
- Specified by:
maxIndexin interfaceXGettingSequence<V>
-
minIndex
- Specified by:
minIndexin interfaceXGettingSequence<V>
-
scan
Description copied from interface:XGettingSequenceIterates through the collection and returns the index of the last element that the passedPredicateapplied to ("scanning").- Specified by:
scanin interfaceXGettingSequence<V>- Returns:
- the index of the last positively tested element.
-