Uses of Interface
net.bytebuddy.implementation.MethodCall.TargetHandler.Resolved
-
Packages that use MethodCall.TargetHandler.Resolved Package Description net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of MethodCall.TargetHandler.Resolved in net.bytebuddy.implementation
Classes in net.bytebuddy.implementation that implement MethodCall.TargetHandler.Resolved 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.protected static class
MethodCall.TargetHandler.ForMethodCall.Resolved
A resolved target handler for a method call.protected static class
MethodCall.TargetHandler.ForMethodParameter.Resolved
A resolved target handler for a method parameter.protected static class
MethodCall.TargetHandler.ForSelfOrStaticInvocation.Resolved
A resolved target handler for a static or self-declared invocation.static class
MethodCall.TargetHandler.ForValue
A target handler that invokes a method on an instance that is stored in a static field.static class
MethodCall.TargetHandler.Simple
A simple target handler that applies a given stack manipulation.Fields in net.bytebuddy.implementation declared as MethodCall.TargetHandler.Resolved Modifier and Type Field Description private MethodCall.TargetHandler.Resolved
MethodCall.ArgumentLoader.ForMethodCall. targetHandler
The resolved target handler to use.private MethodCall.TargetHandler.Resolved
MethodCall.TargetHandler.ForMethodCall.Resolved. targetHandler
The target handler to use.Methods in net.bytebuddy.implementation that return MethodCall.TargetHandler.Resolved Modifier and Type Method Description MethodCall.TargetHandler.Resolved
MethodCall.TargetHandler.ForConstructingInvocation. resolve(MethodDescription instrumentedMethod)
Resolves this target handler.MethodCall.TargetHandler.Resolved
MethodCall.TargetHandler.ForField. resolve(MethodDescription instrumentedMethod)
Resolves this target handler.MethodCall.TargetHandler.Resolved
MethodCall.TargetHandler.ForMethodCall. resolve(MethodDescription instrumentedMethod)
Resolves this target handler.MethodCall.TargetHandler.Resolved
MethodCall.TargetHandler.ForMethodParameter. resolve(MethodDescription instrumentedMethod)
Resolves this target handler.MethodCall.TargetHandler.Resolved
MethodCall.TargetHandler.ForSelfOrStaticInvocation. resolve(MethodDescription instrumentedMethod)
Resolves this target handler.MethodCall.TargetHandler.Resolved
MethodCall.TargetHandler.ForValue. resolve(MethodDescription instrumentedMethod)
Resolves this target handler.MethodCall.TargetHandler.Resolved
MethodCall.TargetHandler. resolve(MethodDescription instrumentedMethod)
Resolves this target handler.MethodCall.TargetHandler.Resolved
MethodCall.TargetHandler.Simple. resolve(MethodDescription instrumentedMethod)
Resolves this target handler.Methods in net.bytebuddy.implementation with parameters of type MethodCall.TargetHandler.Resolved Modifier and Type Method Description protected MethodDescription
MethodCall.Appender. toInvokedMethod(MethodDescription instrumentedMethod, MethodCall.TargetHandler.Resolved targetHandler)
Resolves this appender to the method being invoked.protected StackManipulation
MethodCall.Appender. toStackManipulation(MethodDescription instrumentedMethod, MethodDescription invokedMethod, MethodCall.TargetHandler.Resolved targetHandler)
Resolves this appender to a stack manipulation.Constructors in net.bytebuddy.implementation with parameters of type MethodCall.TargetHandler.Resolved Constructor Description ForMethodCall(MethodCall.Appender appender, MethodDescription methodDescription, MethodDescription instrumentedMethod, MethodCall.TargetHandler.Resolved targetHandler)
Creates a new argument loader for loading a method call's return value.Resolved(MethodCall.Appender appender, MethodDescription methodDescription, MethodDescription instrumentedMethod, MethodCall.TargetHandler.Resolved targetHandler)
Creates a resolved target handler for a method call.
-