Uses of Interface
net.bytebuddy.implementation.MethodCall.TargetHandler.Factory
-
Packages that use MethodCall.TargetHandler.Factory Package Description net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of MethodCall.TargetHandler.Factory in net.bytebuddy.implementation
Classes in net.bytebuddy.implementation that implement MethodCall.TargetHandler.Factory Modifier and Type Class Description (package private) static class
MethodCall.TargetHandler.ForConstructingInvocation.Factory
A target handler factory for a constructor invocation.protected static class
MethodCall.TargetHandler.ForField.Factory
A factory for a field access.protected static class
MethodCall.TargetHandler.ForMethodCall.Factory
Creates a factory for invoking a method on the return type of another method.static class
MethodCall.TargetHandler.ForMethodParameter
A target handler that loads the parameter of the given index as the target object.protected static class
MethodCall.TargetHandler.ForSelfOrStaticInvocation.Factory
A factory for invoking a static method or a self-declared method.protected static class
MethodCall.TargetHandler.ForValue.Factory
A factory for a target handler that loads a specific value.static class
MethodCall.TargetHandler.Simple
A simple target handler that applies a given stack manipulation.Fields in net.bytebuddy.implementation declared as MethodCall.TargetHandler.Factory Modifier and Type Field Description protected MethodCall.TargetHandler.Factory
MethodCall. targetHandler
The target handler to use.Constructors in net.bytebuddy.implementation with parameters of type MethodCall.TargetHandler.Factory Constructor Description MethodCall(MethodCall.MethodLocator.Factory methodLocator, MethodCall.TargetHandler.Factory targetHandler, java.util.List<MethodCall.ArgumentLoader.Factory> argumentLoaders, MethodCall.MethodInvoker.Factory methodInvoker, MethodCall.TerminationHandler.Factory terminationHandler, Assigner assigner, Assigner.Typing typing)
Creates a new method call implementation.
-