Package | Description |
---|---|
net.bytebuddy.implementation |
The implementation package contains any logic for intercepting method calls.
|
Modifier and Type | Method and Description |
---|---|
static MethodCall.WithoutSpecifiedTarget |
MethodCall.invoke(Constructor<?> constructor)
Invokes the given constructor on the instance of the instrumented type.
|
static MethodCall.WithoutSpecifiedTarget |
MethodCall.invoke(ElementMatcher<? super MethodDescription> matcher)
Invokes a unique virtual method or constructor of the instrumented type that is matched by the specified matcher.
|
static MethodCall.WithoutSpecifiedTarget |
MethodCall.invoke(ElementMatcher<? super MethodDescription> matcher,
MethodGraph.Compiler methodGraphCompiler)
Invokes a unique virtual method or constructor of the instrumented type that is matched by the specified matcher.
|
static MethodCall.WithoutSpecifiedTarget |
MethodCall.invoke(Method method)
Invokes the given method.
|
static MethodCall.WithoutSpecifiedTarget |
MethodCall.invoke(MethodCall.MethodLocator.Factory methodLocator)
Invokes a method using the provided method locator.
|
static MethodCall.WithoutSpecifiedTarget |
MethodCall.invoke(MethodDescription methodDescription)
Invokes the given method.
|
static MethodCall.WithoutSpecifiedTarget |
MethodCall.invokeSelf()
Invokes the instrumented method recursively.
|
Copyright © 2014–2024. All rights reserved.