Class ControlFlowNode.InstructionIterator
- java.lang.Object
-
- com.strobel.assembler.flowanalysis.ControlFlowNode.InstructionIterator
-
- All Implemented Interfaces:
java.util.Iterator<Instruction>
- Enclosing class:
- ControlFlowNode
private final class ControlFlowNode.InstructionIterator extends java.lang.Object implements java.util.Iterator<Instruction>
-
-
Field Summary
Fields Modifier and Type Field Description private Instruction
_next
-
Constructor Summary
Constructors Modifier Constructor Description private
InstructionIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
Instruction
next()
void
remove()
-
-
-
Field Detail
-
_next
private Instruction _next
-
-
Method Detail
-
hasNext
public final boolean hasNext()
- Specified by:
hasNext
in interfacejava.util.Iterator<Instruction>
-
next
public final Instruction next()
- Specified by:
next
in interfacejava.util.Iterator<Instruction>
-
remove
public final void remove()
- Specified by:
remove
in interfacejava.util.Iterator<Instruction>
-
-