Package org.eclipse.jetty.util
Class BlockingArrayQueue.Itr
- java.lang.Object
-
- org.eclipse.jetty.util.BlockingArrayQueue.Itr
-
- All Implemented Interfaces:
java.util.Iterator<E>
,java.util.ListIterator<E>
- Enclosing class:
- BlockingArrayQueue<E>
private class BlockingArrayQueue.Itr extends java.lang.Object implements java.util.ListIterator<E>
-
-
Constructor Summary
Constructors Constructor Description Itr(java.lang.Object[] elements, int offset)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(E e)
boolean
hasNext()
boolean
hasPrevious()
E
next()
int
nextIndex()
E
previous()
int
previousIndex()
void
remove()
void
set(E e)
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
-
next
public E next()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfacejava.util.ListIterator<E>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfacejava.util.ListIterator<E>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfacejava.util.ListIterator<E>
-
remove
public void remove()
-
-