public static enum CFG.EdgeType extends Enum<CFG.EdgeType>
Enum Constant and Description |
---|
EXCEPTION |
EXIT |
FALL_THROUGH |
REGULAR |
Modifier and Type | Method and Description |
---|---|
static CFG.EdgeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CFG.EdgeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CFG.EdgeType REGULAR
public static final CFG.EdgeType EXCEPTION
public static final CFG.EdgeType FALL_THROUGH
public static final CFG.EdgeType EXIT
public static CFG.EdgeType[] values()
for (CFG.EdgeType c : CFG.EdgeType.values()) System.out.println(c);
public static CFG.EdgeType 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 nullCopyright © 2001–2015 JRuby. All rights reserved.