Uses of Class
com.strobel.assembler.flowanalysis.JumpType
-
Packages that use JumpType Package Description com.strobel.assembler.flowanalysis com.strobel.assembler.metadata -
-
Uses of JumpType in com.strobel.assembler.flowanalysis
Fields in com.strobel.assembler.flowanalysis declared as JumpType Modifier and Type Field Description private JumpType
ControlFlowEdge. _type
Methods in com.strobel.assembler.flowanalysis that return JumpType Modifier and Type Method Description JumpType
ControlFlowEdge. getType()
static JumpType
JumpType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static JumpType[]
JumpType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.strobel.assembler.flowanalysis with parameters of type JumpType Modifier and Type Method Description private ControlFlowEdge
ControlFlowGraphBuilder. createEdge(ControlFlowNode fromNode, ControlFlowNode toNode, JumpType type)
private ControlFlowEdge
ControlFlowGraphBuilder. createEdge(ControlFlowNode fromNode, Instruction toInstruction, JumpType type)
Constructors in com.strobel.assembler.flowanalysis with parameters of type JumpType Constructor Description ControlFlowEdge(ControlFlowNode source, ControlFlowNode target, JumpType type)
-
Uses of JumpType in com.strobel.assembler.metadata
Methods in com.strobel.assembler.metadata with parameters of type JumpType Modifier and Type Method Description private ControlFlowEdge
ExceptionHandlerMapper. createEdge(ControlFlowNode fromNode, ControlFlowNode toNode, JumpType type)
private ControlFlowEdge
ExceptionHandlerMapper. createEdge(ControlFlowNode fromNode, Instruction toInstruction, JumpType type)
-