public enum HijackMode extends java.lang.Enum<HijackMode>
HijackBehavior.execute(HijackContext) should
run in order to instrumented class and method.| Enum Constant and Description |
|---|
AFTER_METHOD |
AFTER_RETURN_METHOD |
BEFORE_METHOD |
REPLACE_BODY |
| Modifier and Type | Method and Description |
|---|---|
static HijackMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HijackMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HijackMode BEFORE_METHOD
public static final HijackMode AFTER_METHOD
public static final HijackMode AFTER_RETURN_METHOD
public static final HijackMode REPLACE_BODY
public static HijackMode[] values()
for (HijackMode c : HijackMode.values()) System.out.println(c);
public static HijackMode 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