Package | Description |
---|---|
org.codelibs.jhighlight.fastutil.chars | |
org.codelibs.jhighlight.fastutil.objects |
Modifier and Type | Interface and Description |
---|---|
interface |
CharBidirectionalIterator
A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing,
and the possibility to skip elements backwards.
|
interface |
CharListIterator
A type-specific bidirectional iterator that is also a
ListIterator . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractCharBidirectionalIterator
An abstract class facilitating the creation of type-specific bidirectional iterators.
|
class |
AbstractCharListIterator
An abstract class facilitating the creation of type-specific list iterators.
|
static class |
CharIterators.EmptyIterator
A class returning no elements and a type-specific iterator interface.
|
static class |
CharIterators.UnmodifiableBidirectionalIterator
An unmodifiable wrapper class for bidirectional iterators.
|
static class |
CharIterators.UnmodifiableListIterator
An unmodifiable wrapper class for list iterators.
|
Modifier and Type | Method and Description |
---|---|
ObjectIterator<Char2ObjectMap.Entry<V>> |
Char2ObjectMap.FastEntrySet.fastIterator()
Returns a fast iterator over this entry set; the iterator might return always the same entry object, suitably mutated.
|
Modifier and Type | Interface and Description |
---|---|
interface |
ObjectBidirectionalIterator<K>
A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing,
and the possibility to skip elements backwards.
|
interface |
ObjectListIterator<K>
A type-specific bidirectional iterator that is also a
ListIterator . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractObjectBidirectionalIterator<K>
An abstract class facilitating the creation of type-specific bidirectional iterators.
|
class |
AbstractObjectIterator<K>
An abstract class facilitating the creation of type-specific iterators.
|
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.UnmodifiableBidirectionalIterator<K>
An unmodifiable wrapper class for bidirectional iterators.
|
static class |
ObjectIterators.UnmodifiableIterator<K>
An unmodifiable wrapper class for iterators.
|
static class |
ObjectIterators.UnmodifiableListIterator<K>
An unmodifiable wrapper class for list iterators.
|
Modifier and Type | Field and Description |
---|---|
protected ObjectIterator<K> |
ObjectIterators.UnmodifiableIterator.i |
Modifier and Type | Method and Description |
---|---|
static <K> ObjectIterator<K> |
ObjectIterators.asObjectIterator(Iterator<K> i)
Wraps a standard iterator into a type-specific iterator.
|
static <K> ObjectIterator<K> |
ObjectIterators.concat(ObjectIterator<? extends K>[] a)
Concatenates all iterators contained in an array.
|
static <K> ObjectIterator<K> |
ObjectIterators.concat(ObjectIterator<? extends K>[] a,
int offset,
int length)
Concatenates a sequence of iterators contained in an array.
|
ObjectIterator<K> |
ObjectIterable.iterator()
Returns a type-specific iterator.
|
abstract ObjectIterator<K> |
AbstractObjectCollection.iterator() |
abstract ObjectIterator<K> |
AbstractObjectSet.iterator() |
ObjectIterator<K> |
ObjectSet.iterator()
Returns a type-specific iterator on the elements of this set.
|
ObjectIterator<K> |
ObjectCollection.iterator()
Returns a type-specific iterator on the elements of this collection.
|
ObjectIterator<K> |
AbstractObjectCollection.objectIterator()
Deprecated.
|
ObjectIterator<K> |
ObjectCollection.objectIterator()
Deprecated.
As of
fastutil 5, replaced by ObjectCollection.iterator() . |
static <K> ObjectIterator<K> |
ObjectIterators.unmodifiable(ObjectIterator<K> i)
Returns an unmodifiable iterator backed by the specified iterator.
|
Modifier and Type | Method and Description |
---|---|
static <K> ObjectIterator<K> |
ObjectIterators.concat(ObjectIterator<? extends K>[] a)
Concatenates all iterators contained in an array.
|
static <K> ObjectIterator<K> |
ObjectIterators.concat(ObjectIterator<? extends K>[] a,
int offset,
int length)
Concatenates a sequence of iterators contained in an array.
|
static <K> ObjectIterator<K> |
ObjectIterators.unmodifiable(ObjectIterator<K> i)
Returns an unmodifiable iterator backed by the specified iterator.
|
Constructor and Description |
---|
ObjectArrayList(ObjectIterator<? extends K> i)
Creates a new array list and fills it with the elements returned by a type-specific iterator..
|
UnmodifiableIterator(ObjectIterator<K> i) |
Copyright © 2011–2024. All rights reserved.