protected static enum AbstractCFGVisualizer.VisualizeWhere extends Enum<AbstractCFGVisualizer.VisualizeWhere>
Enum Constant and Description |
---|
AFTER
Visualize after the block.
|
BEFORE
Visualize before the block.
|
Modifier and Type | Method and Description |
---|---|
static AbstractCFGVisualizer.VisualizeWhere |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractCFGVisualizer.VisualizeWhere[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractCFGVisualizer.VisualizeWhere BEFORE
public static final AbstractCFGVisualizer.VisualizeWhere AFTER
public static AbstractCFGVisualizer.VisualizeWhere[] values()
for (AbstractCFGVisualizer.VisualizeWhere c : AbstractCFGVisualizer.VisualizeWhere.values()) System.out.println(c);
public static AbstractCFGVisualizer.VisualizeWhere 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 null