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 privateInstructionIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Instructionnext()voidremove()
-
-
-
Field Detail
-
_next
private Instruction _next
-
-
Method Detail
-
hasNext
public final boolean hasNext()
- Specified by:
hasNextin interfacejava.util.Iterator<Instruction>
-
next
public final Instruction next()
- Specified by:
nextin interfacejava.util.Iterator<Instruction>
-
remove
public final void remove()
- Specified by:
removein interfacejava.util.Iterator<Instruction>
-
-