Package net.didion.jwnl.util
Class TypeCheckingList.TypeCheckingListIterator
- java.lang.Object
-
- net.didion.jwnl.util.TypeCheckingList.TypeCheckingListIterator
-
- All Implemented Interfaces:
Iterator,ListIterator
- Enclosing class:
- TypeCheckingList
public final class TypeCheckingList.TypeCheckingListIterator extends Object implements ListIterator
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(Object o)ClassgetType()booleanhasNext()booleanhasPrevious()Objectnext()intnextIndex()Objectprevious()intpreviousIndex()voidremove()voidset(Object o)
-
-
-
Method Detail
-
getType
public Class getType()
-
set
public void set(Object o)
- Specified by:
setin interfaceListIterator
-
add
public void add(Object o)
- Specified by:
addin interfaceListIterator
-
hasNext
public boolean hasNext()
- Specified by:
hasNextin interfaceIterator- Specified by:
hasNextin interfaceListIterator
-
next
public Object next()
- Specified by:
nextin interfaceIterator- Specified by:
nextin interfaceListIterator
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfaceListIterator
-
previous
public Object previous()
- Specified by:
previousin interfaceListIterator
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfaceListIterator
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfaceListIterator
-
remove
public void remove()
- Specified by:
removein interfaceIterator- Specified by:
removein interfaceListIterator
-
-