Uses of Interface
net.bytebuddy.implementation.MethodCall.MethodInvoker
-
Packages that use MethodCall.MethodInvoker Package Description net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of MethodCall.MethodInvoker in net.bytebuddy.implementation
Classes in net.bytebuddy.implementation that implement MethodCall.MethodInvoker Modifier and Type Class Description static class
MethodCall.MethodInvoker.ForContextualInvocation
Applies a contextual invocation of the provided method, i.e.static class
MethodCall.MethodInvoker.ForDefaultMethodInvocation
Invokes a method as a Java 8 default method.static class
MethodCall.MethodInvoker.ForSuperMethodInvocation
Applies a super method invocation of the provided method.static class
MethodCall.MethodInvoker.ForVirtualInvocation
Applies a virtual invocation on a given type.static class
MethodCall.MethodInvoker.ForVirtualInvocation.WithImplicitType
A method invoker for a virtual method that uses an implicit target type.Fields in net.bytebuddy.implementation declared as MethodCall.MethodInvoker Modifier and Type Field Description protected MethodCall.MethodInvoker
MethodCall. methodInvoker
The method invoker to use.Constructors in net.bytebuddy.implementation with parameters of type MethodCall.MethodInvoker Constructor Description MethodCall(MethodCall.MethodLocator methodLocator, MethodCall.TargetHandler targetHandler, java.util.List<MethodCall.ArgumentLoader.Factory> argumentLoaders, MethodCall.MethodInvoker methodInvoker, MethodCall.TerminationHandler terminationHandler, Assigner assigner, Assigner.Typing typing)
Creates a new method call implementation.
-