public enum InjectionPoint extends java.lang.Enum<InjectionPoint>
BeginningAndEnd may not be valid for some types of
instrumentation.| Enum Constant and Description |
|---|
Beginning
Instrumentation will be inserted at the beginning of the method.
|
BeginningAndEnd
Instrumentation will be inserted at the beginning of the method
and at all exit points.
|
End
Instrumentation will be inserted at the end of the method
(all exit points).
|
| Modifier and Type | Method and Description |
|---|---|
static InjectionPoint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InjectionPoint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InjectionPoint Beginning
public static final InjectionPoint End
public static final InjectionPoint BeginningAndEnd
public static InjectionPoint[] values()
for (InjectionPoint c : InjectionPoint.values()) System.out.println(c);
public static InjectionPoint 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 nullCopyright © 2018 PreEmptive Solutions, LLC. All Rights Reserved.