korat.instrumentation.bytecode
Enum OperandStack.ConsumedByKind
java.lang.Object
java.lang.Enum<OperandStack.ConsumedByKind>
korat.instrumentation.bytecode.OperandStack.ConsumedByKind
- All Implemented Interfaces:
- Serializable, Comparable<OperandStack.ConsumedByKind>
- Enclosing class:
- OperandStack
public static enum OperandStack.ConsumedByKind
- extends Enum<OperandStack.ConsumedByKind>
UNKNOWN
public static final OperandStack.ConsumedByKind UNKNOWN
PUTFIELD
public static final OperandStack.ConsumedByKind PUTFIELD
LOCAL_STORE
public static final OperandStack.ConsumedByKind LOCAL_STORE
ARRAY_STORE
public static final OperandStack.ConsumedByKind ARRAY_STORE
INVOKE
public static final OperandStack.ConsumedByKind INVOKE
values
public static final OperandStack.ConsumedByKind[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(OperandStack.ConsumedByKind c : OperandStack.ConsumedByKind.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static OperandStack.ConsumedByKind valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name