Package | Description |
---|---|
net.bytebuddy.implementation |
The implementation package contains any logic for intercepting method calls.
|
Modifier and Type | Method and Description |
---|---|
static InvokeDynamic.WithImplicitTarget |
InvokeDynamic.bootstrap(java.lang.reflect.Constructor<?> constructor,
java.util.List<?> rawArguments)
Implements the instrumented method with a dynamic method invocation which is linked at runtime using the
specified bootstrap constructor.
|
static InvokeDynamic.WithImplicitTarget |
InvokeDynamic.bootstrap(java.lang.reflect.Constructor<?> constructor,
java.lang.Object... rawArgument)
Implements the instrumented method with a dynamic method invocation which is linked at runtime using the
specified bootstrap constructor.
|
static InvokeDynamic.WithImplicitTarget |
InvokeDynamic.bootstrap(MethodDescription.InDefinedShape bootstrapMethod,
java.util.List<?> rawArguments)
Implements the instrumented method with a dynamic method invocation which is linked at runtime using the
specified bootstrap method or constructor.
|
static InvokeDynamic.WithImplicitTarget |
InvokeDynamic.bootstrap(MethodDescription.InDefinedShape bootstrapMethod,
java.lang.Object... rawArgument)
Implements the instrumented method with a dynamic method invocation which is linked at runtime using the
specified bootstrap method or constructor.
|
static InvokeDynamic.WithImplicitTarget |
InvokeDynamic.bootstrap(java.lang.reflect.Method method,
java.util.List<?> rawArguments)
Implements the instrumented method with a dynamic method invocation which is linked at runtime using the
specified bootstrap method.
|
static InvokeDynamic.WithImplicitTarget |
InvokeDynamic.bootstrap(java.lang.reflect.Method method,
java.lang.Object... rawArgument)
Implements the instrumented method with a dynamic method invocation which is linked at runtime using the
specified bootstrap method.
|