Interface XImmutableSet<E>
- All Superinterfaces:
CapacityCarrying
,Copyable
,ExtendedCollection<E>
,HashImmutable
,Immutable
,Iterable<E>
,Sized
,ThreadSafe
,XGettingCollection<E>
,XGettingSet<E>
,XImmutableCollection<E>
,XIterable<E>
,XJoinable<E>
- All Known Subinterfaces:
XImmutableEnum<E>
,XImmutableMap<K,V>
,XImmutableMap.Keys<K,V>
,XImmutableTable<K,V>
,XImmutableTable.Keys<K,V>
- All Known Implementing Classes:
Constant
,ConstHashEnum
,ConstHashTable
,ConstHashTable.Keys
,ConstLinearEnum
,Empty
,EmptyTable
,EqConstHashEnum
,EqConstHashTable
,EqConstHashTable.Keys
,LinkingReferencing.Default
public interface XImmutableSet<E> extends XImmutableCollection<E>, XGettingSet<E>
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
XImmutableSet.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.XGettingSet
XGettingSet.Creator<E>
Nested classes/interfaces inherited from interface one.microstream.collections.types.XIterable
XIterable.Executor<E>
-
Method Summary
Modifier and Type Method Description XImmutableSet<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.XImmutableSet<E>
immure()
Always returns the already immutable collection instance itselfMethods 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, get, hashCode, hasVolatileElements, intersect, intSize, iterator, join, max, min, nullContained, old, search, seek, size, toArray, toArray, union, view
-
Method Details
-
copy
XImmutableSet<E> 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<E>
- Specified by:
copy
in interfaceXGettingSet<E>
- Specified by:
copy
in interfaceXImmutableCollection<E>
- Returns:
- a copy of this list
-
immure
XImmutableSet<E> immure()Always returns the already immutable collection instance itselfFor spawning a copy of the collection instance, see
XImmutableCollection.copy()
- Specified by:
immure
in interfaceXGettingCollection<E>
- Specified by:
immure
in interfaceXGettingSet<E>
- Specified by:
immure
in interfaceXImmutableCollection<E>
- Returns:
- a reference to the instance itself.
- See Also:
XImmutableCollection.copy()
-