public static enum CTarget.Shift extends java.lang.Enum<CTarget.Shift>
| Enum Constant and Description |
|---|
AFTER
Inject the code after the target
|
BEFORE
Inject the code before the target
|
| Modifier and Type | Method and Description |
|---|---|
static CTarget.Shift |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CTarget.Shift[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CTarget.Shift BEFORE
public static final CTarget.Shift AFTER
public static CTarget.Shift[] values()
for (CTarget.Shift c : CTarget.Shift.values()) System.out.println(c);
public static CTarget.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