Uses of Interface
net.bytebuddy.implementation.MethodCall.TargetHandler
-
Packages that use MethodCall.TargetHandler Package Description net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of MethodCall.TargetHandler in net.bytebuddy.implementation
Classes in net.bytebuddy.implementation that implement MethodCall.TargetHandler Modifier and Type Class Description static class
MethodCall.TargetHandler.ForConstructingInvocation
Invokes a method in order to construct a new instance.static class
MethodCall.TargetHandler.ForField
Creates a target handler that stores the instance to invoke a method on in an instance field.static class
MethodCall.TargetHandler.ForMethodParameter
A target handler that loads the parameter of the given index as the target object.static class
MethodCall.TargetHandler.ForSelfOrStaticInvocation
A target handler that invokes a method either on the instance of the instrumented type or as a static method.static class
MethodCall.TargetHandler.ForValue
A target handler that invokes a method on an instance that is stored in a static field.Fields in net.bytebuddy.implementation declared as MethodCall.TargetHandler Modifier and Type Field Description protected MethodCall.TargetHandler
MethodCall. targetHandler
The target handler to use.Constructors in net.bytebuddy.implementation with parameters of type MethodCall.TargetHandler 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.
-