public static enum RegionNode.BlockType extends Enum<RegionNode.BlockType>
| Enum Constant and Description |
|---|
EXCEPTION_HANDLER |
FINALLY |
NORMAL |
| Modifier and Type | Method and Description |
|---|---|
static RegionNode.BlockType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegionNode.BlockType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegionNode.BlockType NORMAL
public static final RegionNode.BlockType EXCEPTION_HANDLER
public static final RegionNode.BlockType FINALLY
public static RegionNode.BlockType[] values()
for (RegionNode.BlockType c : RegionNode.BlockType.values()) System.out.println(c);
public static RegionNode.BlockType 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 © 2020 Systemprogrammierung Mirko Sertic. All rights reserved.