Package | Description |
---|---|
org.codelibs.jhighlight.fastutil.objects |
Modifier and Type | Class and Description |
---|---|
class |
AbstractObjectListIterator<K>
An abstract class facilitating the creation of type-specific list iterators.
|
static class |
ObjectIterators.EmptyIterator<K>
A class returning no elements and a type-specific iterator interface.
|
static class |
ObjectIterators.UnmodifiableListIterator<K>
An unmodifiable wrapper class for list iterators.
|
Modifier and Type | Field and Description |
---|---|
protected ObjectListIterator<K> |
ObjectIterators.UnmodifiableListIterator.i |
Modifier and Type | Method and Description |
---|---|
static <K> ObjectListIterator<K> |
ObjectIterators.asObjectIterator(ListIterator<K> i)
Wraps a standard list iterator into a type-specific list iterator.
|
ObjectListIterator<K> |
ObjectList.iterator()
Returns a type-specific iterator on the elements of this list (in proper sequence).
|
ObjectListIterator<K> |
AbstractObjectList.iterator() |
ObjectListIterator<K> |
ObjectList.listIterator()
Returns a type-specific list iterator on the list.
|
ObjectListIterator<K> |
AbstractObjectList.listIterator() |
ObjectListIterator<K> |
ObjectArrayList.listIterator(int index) |
ObjectListIterator<K> |
ObjectList.listIterator(int index)
Returns a type-specific list iterator on the list starting at a given index.
|
ObjectListIterator<K> |
AbstractObjectList.listIterator(int index) |
ObjectListIterator<K> |
AbstractObjectList.ObjectSubList.listIterator(int index) |
ObjectListIterator<K> |
ObjectList.objectListIterator()
Deprecated.
As of
fastutil 5, replaced by ObjectList.listIterator() . |
ObjectListIterator<K> |
AbstractObjectList.objectListIterator()
Deprecated.
|
ObjectListIterator<K> |
ObjectList.objectListIterator(int index)
Deprecated.
As of
fastutil 5, replaced by ObjectList.listIterator(int) . |
ObjectListIterator<K> |
AbstractObjectList.objectListIterator(int index)
Deprecated.
|
static <K> ObjectListIterator<K> |
ObjectIterators.singleton(K element)
Returns an iterator that iterates just over the given element.
|
static <K> ObjectListIterator<K> |
ObjectIterators.unmodifiable(ObjectListIterator<K> i)
Returns an unmodifiable list iterator backed by the specified list iterator.
|
static <K> ObjectListIterator<K> |
ObjectIterators.wrap(K[] array)
Wraps the given array into a type-specific list iterator.
|
static <K> ObjectListIterator<K> |
ObjectIterators.wrap(K[] array,
int offset,
int length)
Wraps the given part of an array into a type-specific list iterator.
|
Modifier and Type | Method and Description |
---|---|
static <K> ObjectListIterator<K> |
ObjectIterators.unmodifiable(ObjectListIterator<K> i)
Returns an unmodifiable list iterator backed by the specified list iterator.
|
Constructor and Description |
---|
UnmodifiableListIterator(ObjectListIterator<K> i) |
Copyright © 2011–2024. All rights reserved.