Package com.github.javaparser.ast
Class NodeList.NodeListIterator
- java.lang.Object
-
- com.github.javaparser.ast.NodeList.NodeListIterator
-
-
Constructor Summary
Constructors Constructor Description NodeListIterator(java.util.List<N> list)
NodeListIterator(java.util.List<N> list, int index)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(N n)
void
forEachRemaining(java.util.function.Consumer<? super N> action)
boolean
hasNext()
boolean
hasPrevious()
N
next()
int
nextIndex()
N
previous()
int
previousIndex()
void
remove()
void
set(N n)
-