Class CipPath.LockedListIterator
- java.lang.Object
-
- com.automation_pros.odva.cip.path.CipPath.LockedListIterator
-
- All Implemented Interfaces:
java.util.Iterator<PathSegment>
,java.util.ListIterator<PathSegment>
- Enclosing class:
- CipPath
protected class CipPath.LockedListIterator extends java.lang.Object implements java.util.ListIterator<PathSegment>
-
-
Constructor Summary
Constructors Constructor Description LockedListIterator(java.util.ListIterator<PathSegment> inner)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(PathSegment pathSegment)
boolean
hasNext()
boolean
hasPrevious()
PathSegment
next()
int
nextIndex()
PathSegment
previous()
int
previousIndex()
void
remove()
void
set(PathSegment pathSegment)
-
-
-
Constructor Detail
-
LockedListIterator
public LockedListIterator(java.util.ListIterator<PathSegment> inner)
-
-
Method Detail
-
hasNext
public boolean hasNext()
- Specified by:
hasNext
in interfacejava.util.Iterator<PathSegment>
- Specified by:
hasNext
in interfacejava.util.ListIterator<PathSegment>
-
next
public PathSegment next()
- Specified by:
next
in interfacejava.util.Iterator<PathSegment>
- Specified by:
next
in interfacejava.util.ListIterator<PathSegment>
-
hasPrevious
public boolean hasPrevious()
- Specified by:
hasPrevious
in interfacejava.util.ListIterator<PathSegment>
-
previous
public PathSegment previous()
- Specified by:
previous
in interfacejava.util.ListIterator<PathSegment>
-
nextIndex
public int nextIndex()
- Specified by:
nextIndex
in interfacejava.util.ListIterator<PathSegment>
-
previousIndex
public int previousIndex()
- Specified by:
previousIndex
in interfacejava.util.ListIterator<PathSegment>
-
remove
public void remove()
- Specified by:
remove
in interfacejava.util.Iterator<PathSegment>
- Specified by:
remove
in interfacejava.util.ListIterator<PathSegment>
-
set
public void set(PathSegment pathSegment)
- Specified by:
set
in interfacejava.util.ListIterator<PathSegment>
-
add
public void add(PathSegment pathSegment)
- Specified by:
add
in interfacejava.util.ListIterator<PathSegment>
-
-