Interface XProcessingSet<E>
- All Superinterfaces:
- CapacityCarrying,- Clearable,- ConsolidatableCollection,- Copyable,- ExtendedCollection<E>,- Iterable<E>,- OptimizableCollection,- Processable<E>,- ReleasingCollection<E>,- Sized,- Truncateable,- XGettingCollection<E>,- XGettingSet<E>,- XIterable<E>,- XJoinable<E>,- XProcessingCollection<E>,- XRemovingCollection<E>,- XRemovingSet<E>
- All Known Subinterfaces:
- XBasicEnum<E>,- XBasicTable<K,V>,- XBasicTable.Keys<K,V>,- XChart<K,V>,- XChart.Keys<K,V>,- XDecreasingEnum<E>,- XEnum<E>,- XMap<K,V>,- XMap.Keys<K,V>,- XProcessingEnum<E>,- XProcessingMap.Keys<K,V>,- XRank<E>,- XSet<E>,- XTable<K,V>,- XTable.Keys<K,V>
- All Known Implementing Classes:
- EnumProcessor,- EqHashEnum,- EqHashTable,- EqHashTable.Keys,- HashEnum,- HashTable,- HashTable.Keys,- LockedMap,- MutexSet,- OpenAdressingMiniSet,- Single,- SynchSet
public interface XProcessingSet<E> extends XRemovingSet<E>, XGettingSet<E>, XProcessingCollection<E>
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static interfaceXProcessingSet.Factory<E>Nested classes/interfaces inherited from interface one.microstream.collections.interfaces.ExtendedCollectionExtendedCollection.Creator<E,C extends ExtendedCollection<E>>Nested classes/interfaces inherited from interface one.microstream.collections.types.XGettingCollectionXGettingCollection.Creator<E>Nested classes/interfaces inherited from interface one.microstream.collections.types.XGettingSetXGettingSet.Creator<E>Nested classes/interfaces inherited from interface one.microstream.collections.types.XIterableXIterable.Executor<E>
- 
Method SummaryModifier and Type Method Description XProcessingSet<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()Provides an instance of an immutable collection type with equal behavior and data as this instance.Methods inherited from interface one.microstream.collections.interfaces.CapacityCarryingisFull, maximumCapacity, remainingCapacityMethods inherited from interface one.microstream.collections.interfaces.ExtendedCollectionnullAllowedMethods inherited from interface one.microstream.collections.types.XGettingCollectionapplies, 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, viewMethods inherited from interface one.microstream.collections.types.XProcessingCollectionfetch, iterate, moveTo, pinch, removeBy, removeDuplicates, retrieve, retrieveByMethods inherited from interface one.microstream.collections.types.XRemovingCollectionclear, consolidate, nullRemove, optimize, remove, removeAll, removeDuplicates, removeOne, retainAll, truncate
- 
Method Details- 
immureXImmutableSet<E> 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 interface- XGettingCollection<E>
- Specified by:
- immurein interface- XGettingSet<E>
- Returns:
- an immutable copy of this collection instance.
 
- 
copyXProcessingSet<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 interface- Copyable
- Specified by:
- copyin interface- XGettingCollection<E>
- Specified by:
- copyin interface- XGettingSet<E>
- Returns:
- a copy of this list
 
 
-