Class CosArray.CosArrayListIterator
- java.lang.Object
-
- com.adobe.internal.pdftoolkit.core.cos.CosArray.CosArrayListIterator
-
- All Implemented Interfaces:
Iterator<CosObject>,ListIterator<CosObject>
- Enclosing class:
- CosArray
public class CosArray.CosArrayListIterator extends Object implements ListIterator<CosObject>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(CosObject o)booleanhasNext()booleanhasPrevious()CosObjectnext()intnextIndex()CosObjectprevious()intpreviousIndex()voidremove()voidset(CosObject o)-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
nextIndex
public int nextIndex()
- Specified by:
nextIndexin interfaceListIterator<CosObject>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndexin interfaceListIterator<CosObject>
-
remove
public void remove()
-
hasNext
public boolean hasNext()
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPreviousin interfaceListIterator<CosObject>
-
next
public CosObject next()
-
previous
public CosObject previous()
- Specified by:
previousin interfaceListIterator<CosObject>
-
add
public void add(CosObject o)
- Specified by:
addin interfaceListIterator<CosObject>
-
set
public void set(CosObject o)
- Specified by:
setin interfaceListIterator<CosObject>
-
-