-
Methods in one.microstream.collections with type parameters of type XSettingList
Modifier and Type |
Method |
Description |
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> int |
XUtilsArrayCollection.rngReplace(A a,
int offset,
int length,
E oldElement,
E newElement) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> long |
XUtilsArrayCollection.rngReplace(A a,
int offset,
int length,
E oldElement,
E newElement,
Equalator<? super E> equalator) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> int |
XUtilsArrayCollection.rngReplace(A a,
int offset,
int length,
Predicate<? super E> predicate,
E newElement) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> int |
XUtilsArrayCollection.rngReplaceAll(A a,
int offset,
int length,
XGettingCollection<? extends E> oldElements,
E newElement) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> int |
XUtilsArrayCollection.rngReplaceAll(A a,
int offset,
int length,
XGettingCollection<? extends E> oldElements,
E newElement,
Equalator<? super E> equalator) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> int |
XUtilsArrayCollection.rngReplaceAll(A a,
int offset,
int length,
XMap<E,E> replacementMapping) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> int |
XUtilsArrayCollection.rngReplaceOne(A a,
int offset,
int length,
E oldElement,
E newElement) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> int |
XUtilsArrayCollection.rngReplaceOne(A a,
int offset,
int length,
E oldElement,
E newElement,
Equalator<? super E> equalator) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> int |
XUtilsArrayCollection.rngReplaceOne(A a,
int offset,
int length,
Predicate<? super E> predicate,
E newElement) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngReverse(A a,
int offset,
int length) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngShuffle(A a,
int offset,
int length) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngSort(A a,
int offset,
int length,
Comparator<? super E> comparator) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngSortInsertion(A a,
int offset,
int length,
Comparator<? super E> comparator) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngSortMerge(A a,
int offset,
int length,
Comparator<? super E> comparator) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngSortQuick(A a,
int offset,
int length,
Comparator<? super E> comparator) |
|
Methods in one.microstream.collections that return XSettingList
Modifier and Type |
Method |
Description |
XSettingList<E> |
ListAccessor.range(long fromIndex,
long toIndex) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngReverse(A a,
int offset,
int length) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngShuffle(A a,
int offset,
int length) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngSort(A a,
int offset,
int length,
Comparator<? super E> comparator) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngSortInsertion(A a,
int offset,
int length,
Comparator<? super E> comparator) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngSortMerge(A a,
int offset,
int length,
Comparator<? super E> comparator) |
|
static <E,
A extends AbstractSimpleArrayCollection<E> & XSettingList<E>> XSettingList<E> |
XUtilsArrayCollection.rngSortQuick(A a,
int offset,
int length,
Comparator<? super E> comparator) |
|
Methods in one.microstream.collections with parameters of type XSettingList
Modifier and Type |
Method |
Description |
static <E> void |
XUtilsCollection.rngShuffle(XSettingList<E> sequence,
long offset,
long length) |
|
static <E> void |
XUtilsCollection.rngSort(XSettingList<E> sequence,
long offset,
long length,
Comparator<? super E> comparator) |
|
static <E> void |
XUtilsCollection.rngSortInsertion(XSettingList<E> sequence,
long offset,
long length,
Comparator<? super E> comparator) |
|
static <E> void |
XUtilsCollection.rngSortMerge(XSettingList<E> sequence,
long offset,
long length,
Comparator<? super E> comparator) |
|
static <E> void |
XUtilsCollection.rngSortQuick(XSettingList<E> sequence,
long offset,
long length,
Comparator<? super E> comparator) |
|
-
-
-
Subinterfaces of XSettingList in one.microstream.collections.types
Modifier and Type |
Interface |
Description |
static interface |
XBasicTable.Values<K,V> |
|
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 |
XIncreasingList<E> |
|
interface |
XList<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.
All XList implementations have to have RandomAccess behavior.
Intelligent implementations make non-random-access implementations like simple linked lists obsolete.
|
interface |
XReference<E> |
Simple Reference class to handle mutable references.
|
static interface |
XTable.Values<K,V> |
|
Methods in one.microstream.collections.types that return XSettingList
Modifier and Type |
Method |
Description |
XSettingList<E> |
XSettingList.copy() |
|
XSettingList<E> |
XSettingList.fill(long offset,
long length,
E element) |
|
XSettingList<E> |
XSettingList.Creator.newInstance() |
|
XSettingList<E> |
XSettingList.range(long fromIndex,
long toIndex) |
|
XSettingList<E> |
XSettingList.reverse() |
|
XSettingList<E> |
XSettingList.set(long index,
E[] elements,
int offset,
int length) |
|
XSettingList<E> |
XSettingList.set(long index,
XGettingSequence<? extends E> elements,
long offset,
long length) |
|
XSettingList<E> |
XSettingList.setAll(long index,
E... elements) |
|
XSettingList<E> |
XSettingList.swap(long indexA,
long indexB) |
|
XSettingList<E> |
XSettingList.swap(long indexA,
long indexB,
long length) |
|
XSettingList<E> |
XSettingList.toReversed() |
|
-