Uses of Interface
one.microstream.collections.types.XProcessingSequence
-
Packages that use XProcessingSequence Package Description one.microstream.collections one.microstream.collections.sorting one.microstream.collections.types -
-
Uses of XProcessingSequence in one.microstream.collections
Classes in one.microstream.collections that implement XProcessingSequence Modifier and Type Class Description classArrayCollector<E>Full scale general purpose implementation of extended collection typeXList.classBulkList<E>Full scale general purpose implementation of extended collection typeXList.classEnumProcessor<E>classEqBulkList<E>Full scale general purpose implementation of extended collection typeXList.classEqHashEnum<E>classEqHashTable<K,V>classEqHashTable.KeysclassEqHashTable.ValuesclassHashEnum<E>classHashTable<K,V>classHashTable.KeysclassHashTable.ValuesclassLimitList<E>Full scale general purpose implementation of extended collection typeXList.classListProcessor<E>classLockedList<E>classSingle<E>classSubList<E>classSubListProcessor<E>classSubProcessor<E>classSynchList<E>Synchronization wrapper class that wraps anXListinstance in public synchronized delegate methods.Methods in one.microstream.collections that return XProcessingSequence Modifier and Type Method Description XProcessingSequence<E>SubProcessor. removeRange(long offset, long length)XProcessingSequence<E>SubProcessor. retainRange(long offset, long length)static <E> XProcessingSequence<E>XUtilsCollection. rngProcess(XProcessingSequence<E> sequence, long offset, long length, Consumer<? super E> procedure)Methods in one.microstream.collections with parameters of type XProcessingSequence Modifier and Type Method Description static <E,C extends Consumer<? super E>>
CXUtilsCollection. rngMoveTo(XProcessingSequence<E> sequence, long offset, long length, C target, Predicate<? super E> predicate)static <E> XProcessingSequence<E>XUtilsCollection. rngProcess(XProcessingSequence<E> sequence, long offset, long length, Consumer<? super E> procedure)static <E> intXUtilsCollection. rngReduce(XProcessingSequence<E> sequence, long offset, long length, Predicate<? super E> predicate)static <E> intXUtilsCollection. rngRemove(XProcessingSequence<E> sequence, long offset, long length, E element)static <E> intXUtilsCollection. rngRemove(XProcessingSequence<E> sequence, long offset, long length, E sample, Equalator<? super E> equalator)static <E> intXUtilsCollection. rngRemoveAll(XProcessingSequence<E> sequence, long offset, long length, XGettingCollection<? extends E> elements)static <E> intXUtilsCollection. rngRemoveAll(XProcessingSequence<E> sequence, long offset, long length, XGettingCollection<? extends E> samples, Equalator<? super E> equalator)static <E> intXUtilsCollection. rngRemoveDuplicates(XProcessingSequence<E> sequence, long offset, long length)static <E> intXUtilsCollection. rngRemoveDuplicates(XProcessingSequence<E> sequence, long offset, long length, Equalator<? super E> equalator)static <E> intXUtilsCollection. rngRemoveNull(XProcessingSequence<E> sequence, long offset, long length)static <E> booleanXUtilsCollection. rngRemoveOne(XProcessingSequence<E> sequence, long offset, long length, E element)static <E> booleanXUtilsCollection. rngRemoveOne(XProcessingSequence<E> sequence, long offset, long length, E sample, Equalator<? super E> equalator)static <E> intXUtilsCollection. rngRetainAll(XProcessingSequence<E> sequence, long offset, long length, XGettingCollection<? extends E> elements)static <E> intXUtilsCollection. rngRetainAll(XProcessingSequence<E> sequence, long offset, long length, XGettingCollection<? extends E> samples, Equalator<? super E> equalator)static <E> EXUtilsCollection. rngRetrieve(XProcessingSequence<E> sequence, long offset, long length, E element)static <E> EXUtilsCollection. rngRetrieve(XProcessingSequence<E> sequence, long offset, long length, E sample, Equalator<? super E> equalator)static <E> EXUtilsCollection. rngRetrieve(XProcessingSequence<E> sequence, long offset, long length, Predicate<? super E> predicate) -
Uses of XProcessingSequence in one.microstream.collections.sorting
Subinterfaces of XProcessingSequence in one.microstream.collections.sorting Modifier and Type Interface Description interfaceXChart<K,V>static interfaceXChart.Keys<K,V>static interfaceXChart.Values<K,V>interfaceXLadder<E>interfaceXProcessingSortation<E>interfaceXRank<E>interfaceXSortation<E>Actually being a "Collation" (a collection of elements to which a sortation is applied), this type has been named "Sortation" nevertheless to avoid the mistakable similarity to the basic collection type "Collection" in reading, writing, talking and IntelliSense filtering. -
Uses of XProcessingSequence in one.microstream.collections.types
Subinterfaces of XProcessingSequence in one.microstream.collections.types Modifier and Type Interface Description interfaceXBasicEnum<E>interfaceXBasicList<E>interfaceXBasicSequence<E>Intermediate sequence type providing getting, adding, removing concerns to act as a common super type forXSequenceandXSortation.interfaceXBasicTable<K,V>static interfaceXBasicTable.Keys<K,V>static interfaceXBasicTable.Values<K,V>interfaceXDecreasingEnum<E>Intermediate list type that combines all list aspects except increasing (adding and inserting), effectively causing instances of this list type to maintain its size or shrink, but never grow.interfaceXDecreasingList<E>Intermediate list type that combines all list aspects except increasing (adding and inserting), effectively causing instances of this list type to maintain its size or shrink, but never grow.interfaceXDecreasingSequence<E>Intermediate list type that combines all list aspects except increasing (adding and inserting), effectively causing instances of this list type to maintain its size or shrink, but never grow.interfaceXEnum<E>interfaceXList<E>Extended List interface with a ton of badly needed list procedures like distinction between identity and equality element comparison, procedure range specification, higher order (functional) procedures, proper toArray() methods, etc.
AllXListimplementations have to haveRandomAccessbehavior.
Intelligent implementations make non-random-access implementations like simple linked lists obsolete.interfaceXProcessingEnum<E>interfaceXProcessingList<E>interfaceXSequence<E>Level 1 collection type defining the single demand for the collection's elements to be ordered.interfaceXTable<K,V>static interfaceXTable.Keys<K,V>static interfaceXTable.Values<K,V>Methods in one.microstream.collections.types that return XProcessingSequence Modifier and Type Method Description XProcessingSequence<E>XProcessingSequence.Factory. newInstance()XProcessingSequence<E>XProcessingSequence. toReversed()
-