Uses of Interface
net.bytebuddy.implementation.MethodCall.MethodLocator.Factory
-
Packages that use MethodCall.MethodLocator.Factory Package Description net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of MethodCall.MethodLocator.Factory in net.bytebuddy.implementation
Classes in net.bytebuddy.implementation that implement MethodCall.MethodLocator.Factory Modifier and Type Class Description static class
MethodCall.MethodLocator.ForElementMatcher.Factory
A factory for a method locator that uses a matcher on the instrumented type's available methods for identifing a target method.static class
MethodCall.MethodLocator.ForExplicitMethod
Invokes a given method.static class
MethodCall.MethodLocator.ForInstrumentedMethod
A method locator that simply returns the intercepted method.Fields in net.bytebuddy.implementation declared as MethodCall.MethodLocator.Factory Modifier and Type Field Description protected MethodCall.MethodLocator.Factory
MethodCall. methodLocator
The method locator to use.Methods in net.bytebuddy.implementation with parameters of type MethodCall.MethodLocator.Factory Modifier and Type Method Description static MethodCall.WithoutSpecifiedTarget
MethodCall. invoke(MethodCall.MethodLocator.Factory methodLocator)
Invokes a method using the provided method locator.Constructors in net.bytebuddy.implementation with parameters of type MethodCall.MethodLocator.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.WithoutSpecifiedTarget(MethodCall.MethodLocator.Factory methodLocator)
Creates a new method call without a specified target.
-