Uses of Class
com.strobel.decompiler.languages.java.analysis.ControlFlowEdgeType
-
Packages that use ControlFlowEdgeType Package Description com.strobel.decompiler.languages.java.analysis -
-
Uses of ControlFlowEdgeType in com.strobel.decompiler.languages.java.analysis
Fields in com.strobel.decompiler.languages.java.analysis declared as ControlFlowEdgeType Modifier and Type Field Description private ControlFlowEdgeType
ControlFlowEdge. _type
Methods in com.strobel.decompiler.languages.java.analysis that return ControlFlowEdgeType Modifier and Type Method Description ControlFlowEdgeType
ControlFlowEdge. getType()
static ControlFlowEdgeType
ControlFlowEdgeType. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ControlFlowEdgeType[]
ControlFlowEdgeType. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.strobel.decompiler.languages.java.analysis with parameters of type ControlFlowEdgeType Modifier and Type Method Description (package private) ControlFlowEdge
ControlFlowGraphBuilder.NodeCreationVisitor. connect(ControlFlowNode from, ControlFlowNode to, ControlFlowEdgeType type)
protected ControlFlowEdge
ControlFlowGraphBuilder. createEdge(ControlFlowNode from, ControlFlowNode to, ControlFlowEdgeType type)
Constructors in com.strobel.decompiler.languages.java.analysis with parameters of type ControlFlowEdgeType Constructor Description ControlFlowEdge(ControlFlowNode from, ControlFlowNode to, ControlFlowEdgeType type)
-