public static enum CFG.CFG_Edge_Type extends java.lang.Enum<CFG.CFG_Edge_Type>
Enum Constant and Description |
---|
BACK_EDGE |
DUMMY_EDGE |
EXCEPTION_EDGE |
EXIT_EDGE |
FALLTHRU_EDGE |
FORWARD_EDGE |
JUMP_EDGE |
REGULAR |
Modifier and Type | Method and Description |
---|---|
static CFG.CFG_Edge_Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CFG.CFG_Edge_Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CFG.CFG_Edge_Type REGULAR
public static final CFG.CFG_Edge_Type DUMMY_EDGE
public static final CFG.CFG_Edge_Type JUMP_EDGE
public static final CFG.CFG_Edge_Type FALLTHRU_EDGE
public static final CFG.CFG_Edge_Type FORWARD_EDGE
public static final CFG.CFG_Edge_Type BACK_EDGE
public static final CFG.CFG_Edge_Type EXIT_EDGE
public static final CFG.CFG_Edge_Type EXCEPTION_EDGE
public static CFG.CFG_Edge_Type[] values()
for (CFG.CFG_Edge_Type c : CFG.CFG_Edge_Type.values()) System.out.println(c);
public static CFG.CFG_Edge_Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2002-2009 JRuby Team. All Rights Reserved.