Interface XImmutableSequence<E>
-
- All Superinterfaces:
CapacityCarrying,Copyable,ExtendedCollection<E>,ExtendedSequence<E>,HashImmutable,Immutable,Iterable<E>,Sized,ThreadSafe,XGettingCollection<E>,XGettingSequence<E>,XImmutableCollection<E>,XIndexIterable<E>,XIterable<E>,XJoinable<E>
- All Known Subinterfaces:
XImmutableEnum<E>,XImmutableList<E>,XImmutableTable<K,V>,XImmutableTable.Keys<K,V>,XImmutableTable.Values<K,V>
- All Known Implementing Classes:
Constant,ConstHashEnum,ConstHashTable,ConstHashTable.Keys,ConstHashTable.Values,ConstLinearEnum,ConstList,Empty,EmptyTable,EqConstHashEnum,EqConstHashTable,EqConstHashTable.Keys,EqConstHashTable.Values,EqConstList,LinkingReferencing.Default
public interface XImmutableSequence<E> extends XImmutableCollection<E>, XGettingSequence<E>
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceXImmutableSequence.Factory<E>-
Nested classes/interfaces inherited from interface one.microstream.typing.Copyable
Copyable.Static
-
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.XIterable
XIterable.Executor<E>
-
-
Method Summary
Modifier and Type Method Description XImmutableSequence<E>copy()Creates a true copy of this collection which references the same elements as this collection does at the time the method is called.XImmutableSequence<E>immure()Always returns the already immutable collection instance itselfXImmutableSequence<E>toReversed()-
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.hashing.HashImmutable
equals, hashCode
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
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.XGettingSequence
at, copySelection, first, get, hasIndex, indexBy, indexOf, isSorted, last, lastIndexBy, lastIndexOf, maxIndex, minIndex, peek, poll, range, scan, view, view
-
Methods inherited from interface one.microstream.collections.types.XIndexIterable
iterateIndexed
-
-
-
-
Method Detail
-
copy
XImmutableSequence<E> 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<E>- Specified by:
copyin interfaceXGettingSequence<E>- Specified by:
copyin interfaceXImmutableCollection<E>- Returns:
- a copy of this list
-
immure
XImmutableSequence<E> immure()
Always returns the already immutable collection instance itselfFor spawning a copy of the collection instance, see
XImmutableCollection.copy()- Specified by:
immurein interfaceXGettingCollection<E>- Specified by:
immurein interfaceXGettingSequence<E>- Specified by:
immurein interfaceXImmutableCollection<E>- Returns:
- a reference to the instance itself.
- See Also:
XImmutableCollection.copy()
-
toReversed
XImmutableSequence<E> toReversed()
- Specified by:
toReversedin interfaceXGettingSequence<E>
-
-