public static enum ControlFlowGraph.Branch extends Enum<ControlFlowGraph.Branch>
Enum Constant and Description |
---|
ON_EX
Exception-handling code paths.
|
ON_FALSE
Edge is taken if the condition is false.
|
ON_TRUE
Edge is taken if the condition is true.
|
SYN_BLOCK
Possible folded-away template
|
UNCOND
Unconditional branch.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isConditional() |
static ControlFlowGraph.Branch |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ControlFlowGraph.Branch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlFlowGraph.Branch ON_TRUE
public static final ControlFlowGraph.Branch ON_FALSE
public static final ControlFlowGraph.Branch UNCOND
public static final ControlFlowGraph.Branch ON_EX
public static final ControlFlowGraph.Branch SYN_BLOCK
public static ControlFlowGraph.Branch[] values()
for (ControlFlowGraph.Branch c : ControlFlowGraph.Branch.values()) System.out.println(c);
public static ControlFlowGraph.Branch valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean isConditional()
Copyright © 2009-2017 Google. All Rights Reserved.