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