public static enum CASM.Shift extends java.lang.Enum<CASM.Shift>
| Enum Constant and Description |
|---|
BOTTOM
Execute the transformer at the bottom of the handler chain.
|
TOP
Execute the transformer at the top of the handler chain.
|
| Modifier and Type | Method and Description |
|---|---|
static CASM.Shift |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CASM.Shift[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CASM.Shift TOP
public static final CASM.Shift BOTTOM
public static CASM.Shift[] values()
for (CASM.Shift c : CASM.Shift.values()) System.out.println(c);
public static CASM.Shift valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null