Uses of Class
one.microstream.exceptions.IndexBoundsException
Package | Description |
---|---|
one.microstream | |
one.microstream.collections | |
one.microstream.collections.types | |
one.microstream.exceptions | |
one.microstream.util.iterables |
-
Uses of IndexBoundsException in one.microstream
Methods in one.microstream that return IndexBoundsException Modifier and Type Method Description static IndexBoundsException
X. IndexBoundsException(long startIndex, long indexBound, long index, String message, int stackTraceCutDepth)
Methods in one.microstream that throw IndexBoundsException Modifier and Type Method Description static long
X. validateIndex(long availableLength, long index)
-
Uses of IndexBoundsException in one.microstream.collections
Methods in one.microstream.collections that throw IndexBoundsException Modifier and Type Method Description E
BulkList. at(long index)
static <T, E extends T>
T[]XArrays. copyTo(XGettingCollection<E> source, T[] target)
At least for Java 1.8, the types seem to not be checked.static <T, E extends T>
T[]XArrays. copyTo(XGettingCollection<E> source, T[] target, int targetOffset)
E
BulkList. first()
E
BulkList. last()
ListIterator<E>
BulkList. listIterator(long index)
boolean
BulkList. set(long index, E element)
E
BulkList. setGet(long index, E element)
_intList
_intList. swap(int indexA, int indexB)
static void
AbstractExtendedCollection. validateIndex(long bound, long index)
-
Uses of IndexBoundsException in one.microstream.collections.types
Methods in one.microstream.collections.types that throw IndexBoundsException Modifier and Type Method Description E
XGettingSequence. at(long index)
E
XGettingSequence. first()
E
XGettingSequence. last()
-
Uses of IndexBoundsException in one.microstream.exceptions
Subclasses of IndexBoundsException in one.microstream.exceptions Modifier and Type Class Description class
ArrayCapacityException
This implemention intentionally does NOT extend fromArrayIndexOutOfBoundsException
. -
Uses of IndexBoundsException in one.microstream.util.iterables
Constructors in one.microstream.util.iterables that throw IndexBoundsException Constructor Description GenericListIterator(XList<E> list)
GenericListIterator(XList<E> list, int index)
ReadOnlyListIterator(XGettingSequence<E> list)
ReadOnlyListIterator(XGettingSequence<E> list, int index)