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