| Package | Description |
|---|---|
| java.lang | |
| java.util |
| Modifier and Type | Method and Description |
|---|---|
Iterator<T> |
Iterable.iterator()
Returns an
Iterator for the elements in this object. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ListIterator<E>
An ListIterator is used to sequence over a List of objects.
|
| Modifier and Type | Method and Description |
|---|---|
Iterator<E> |
TreeSet.descendingIterator()
Answers a descending iterator of this set.
|
Iterator<E> |
NavigableSet.descendingIterator()
Answers a descending iterator of this set.
|
Iterator<E> |
LinkedList.descendingIterator()
Returns the iterator in reverse order, from tail to head.
|
Iterator<E> |
Deque.descendingIterator()
Returns the iterator in reverse order, from tail to head.
|
Iterator<E> |
ArrayDeque.descendingIterator()
Returns the iterator in reverse order, from tail to head.
|
Iterator<E> |
TreeSet.iterator()
Returns an Iterator on the elements of this
TreeSet. |
Iterator<E> |
Set.iterator()
Returns an iterator on the elements of this set.
|
Iterator<E> |
PriorityQueue.iterator()
Gets the iterator of the priority queue, which will not return elements
in any specified ordering.
|
Iterator<E> |
List.iterator()
Returns an iterator on the elements of this
List. |
Iterator<E> |
HashSet.iterator()
Returns an Iterator on the elements of this
HashSet. |
Iterator<E> |
Collection.iterator()
Returns an instance of
Iterator that may be used to access the
objects contained by this Collection. |
Iterator<E> |
ArrayDeque.iterator()
Returns the iterator of the deque.
|
Iterator<E> |
AbstractSequentialList.iterator() |
Iterator<E> |
AbstractList.iterator()
Returns an iterator on the elements of this list.
|
abstract Iterator<E> |
AbstractCollection.iterator()
Returns an instance of
Iterator that may be used to access the
objects contained by this Collection. |
Copyright © 2024. All rights reserved.