Package aQute.lib.collections
Class SortedList.It
- java.lang.Object
-
- aQute.lib.collections.SortedList.It
-
- All Implemented Interfaces:
java.util.Iterator<T>,java.util.ListIterator<T>
- Enclosing class:
- SortedList<T>
private class SortedList.It extends java.lang.Object implements java.util.ListIterator<T>
-
-
Field Summary
Fields Modifier and Type Field Description private intn
-
Constructor Summary
Constructors Constructor Description It(int n)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidadd(T e)Deprecated.booleanhasNext()booleanhasPrevious()Tnext()intnextIndex()Tprevious()intpreviousIndex()voidremove()Deprecated.voidset(T e)Deprecated.
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
-
next
public T next() throws java.util.NoSuchElementException
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfacejava.util.ListIterator<T>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfacejava.util.ListIterator<T>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfacejava.util.ListIterator<T>
-
remove
@Deprecated public void remove()
Deprecated.
-
set
@Deprecated public void set(T e)
Deprecated.- Specified by:
setin interfacejava.util.ListIterator<T>
-
-