-
-
-
Subinterfaces of XOrderingSequence in one.microstream.collections.types
Modifier and Type |
Interface |
Description |
static interface |
XBasicTable.Values<K,V> |
|
interface |
XDecreasingEnum<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.
|
interface |
XDecreasingList<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.
|
interface |
XDecreasingSequence<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.
|
interface |
XEnum<E> |
|
interface |
XIncreasingEnum<E> |
|
interface |
XIncreasingList<E> |
|
interface |
XIncreasingSequence<E> |
|
interface |
XList<E> |
Extended List interface with additional list procedures like distinction between identity and equality
element comparison, procedure range specification, higher order (functional) procedures, proper toArray() methods,
etc.
All XList implementations have to have RandomAccess behavior.
Intelligent implementations make non-random-access implementations like simple linked lists obsolete.
|
interface |
XOrderingEnum<E> |
|
interface |
XReference<E> |
Simple Reference class to handle mutable references.
|
interface |
XSequence<E> |
Level 1 collection type defining the single demand for the collection's elements to be ordered.
|
interface |
XSettingEnum<E> |
|
interface |
XSettingList<E> |
|
interface |
XSettingSequence<E> |
|
interface |
XSortableEnum<E> |
|
interface |
XSortableSequence<E> |
|
interface |
XTable<K,V> |
|
static interface |
XTable.Keys<K,V> |
|
static interface |
XTable.Values<K,V> |
|
Methods in one.microstream.collections.types that return XOrderingSequence
Modifier and Type |
Method |
Description |
XOrderingSequence<E> |
XOrderingSequence.reverse() |
Reverses the order of its own elements and returns itself.
|
XOrderingSequence<E> |
XOrderingSequence.shiftBy(long sourceIndex,
long distance) |
Moves the element from the sourceIndex in the sequence to a higher index position.
All other elements are possibly moved to create the empty slot for the shifting element.
|
XOrderingSequence<E> |
XOrderingSequence.shiftBy(long sourceIndex,
long distance,
long length) |
Moves multiple elements from the sourceIndex in the sequence to a higher index position.
All other elements are possibly moved to create the empty slot for the shifting elements.
|
XOrderingSequence<E> |
XOrderingSequence.shiftTo(long sourceIndex,
long targetIndex) |
Moves the element from the sourceIndex in the sequence to the targetIndex.
All other elements are possibly moved to create the empty slot for the shifting element.
|
XOrderingSequence<E> |
XOrderingSequence.shiftTo(long sourceIndex,
long targetIndex,
long length) |
Moves multiple elements from the sourceIndex in the sequence to the targetIndex.
All other elements are possibly moved to create the empty slot for the shifting element.
|
XOrderingSequence<E> |
XOrderingSequence.swap(long indexA,
long indexB) |
|
XOrderingSequence<E> |
XOrderingSequence.swap(long indexA,
long indexB,
long length) |
|
-