public static enum Bytecode.OperandGroups extends Enum<Bytecode.OperandGroups>
| Modifier and Type | Method and Description |
|---|---|
static Bytecode.OperandGroups |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bytecode.OperandGroups[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bytecode.OperandGroups ZERO
public static final Bytecode.OperandGroups ONE
public static final Bytecode.OperandGroups TWO
public static final Bytecode.OperandGroups MANY
public static Bytecode.OperandGroups[] values()
for (Bytecode.OperandGroups c : Bytecode.OperandGroups.values()) System.out.println(c);
public static Bytecode.OperandGroups 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 © 2017. All rights reserved.