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 void
add(Object o)
Class
getType()
boolean
hasNext()
boolean
hasPrevious()
Object
next()
int
nextIndex()
Object
previous()
int
previousIndex()
void
remove()
void
set(Object o)
-
-
-
Method Detail
-
getType
public Class getType()
-
set
public void set(Object o)
- Specified by:
set
in interfaceListIterator
-
add
public void add(Object o)
- Specified by:
add
in interfaceListIterator
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfaceIterator
- Specified by:
hasNext
in interfaceListIterator
-
next
public Object next()
- Specified by:
next
in interfaceIterator
- Specified by:
next
in interfaceListIterator
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfaceListIterator
-
previous
public Object previous()
- Specified by:
previous
in interfaceListIterator
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfaceListIterator
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfaceListIterator
-
remove
public void remove()
- Specified by:
remove
in interfaceIterator
- Specified by:
remove
in interfaceListIterator
-
-