static enum MethodCall.MethodInvoker.ForDefaultMethodInvocation.Factory extends java.lang.Enum<MethodCall.MethodInvoker.ForDefaultMethodInvocation.Factory> implements MethodCall.MethodInvoker.Factory
Enum Constant and Description |
---|
INSTANCE
The singleton instance.
|
Modifier and Type | Method and Description |
---|---|
MethodCall.MethodInvoker |
make(TypeDescription instrumentedType)
Creates a method invoker.
|
static MethodCall.MethodInvoker.ForDefaultMethodInvocation.Factory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MethodCall.MethodInvoker.ForDefaultMethodInvocation.Factory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MethodCall.MethodInvoker.ForDefaultMethodInvocation.Factory INSTANCE
public static MethodCall.MethodInvoker.ForDefaultMethodInvocation.Factory[] values()
for (MethodCall.MethodInvoker.ForDefaultMethodInvocation.Factory c : MethodCall.MethodInvoker.ForDefaultMethodInvocation.Factory.values()) System.out.println(c);
public static MethodCall.MethodInvoker.ForDefaultMethodInvocation.Factory 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 nullpublic MethodCall.MethodInvoker make(TypeDescription instrumentedType)
make
in interface MethodCall.MethodInvoker.Factory
instrumentedType
- The instrumented type.