public static enum SpecialBlock.SpecialBlockType extends Enum<SpecialBlock.SpecialBlockType>
Enum Constant and Description |
---|
ENTRY
The entry block of a method
|
EXCEPTIONAL_EXIT
A special exit block of a method for exceptional termination
|
EXIT
The exit block of a method
|
Modifier and Type | Method and Description |
---|---|
static SpecialBlock.SpecialBlockType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpecialBlock.SpecialBlockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecialBlock.SpecialBlockType ENTRY
public static final SpecialBlock.SpecialBlockType EXIT
public static final SpecialBlock.SpecialBlockType EXCEPTIONAL_EXIT
public static SpecialBlock.SpecialBlockType[] values()
for (SpecialBlock.SpecialBlockType c : SpecialBlock.SpecialBlockType.values()) System.out.println(c);
public static SpecialBlock.SpecialBlockType 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