| Package | Description | 
|---|---|
| net.bytebuddy.implementation | The implementation package contains any logic for intercepting method calls. | 
| Modifier and Type | Class and Description | 
|---|---|
| static class  | MethodCall.TargetHandler.ForConstructingInvocationInvokes a method in order to construct a new instance. | 
| static class  | MethodCall.TargetHandler.ForFieldCreates a target handler that stores the instance to invoke a method on in an instance field. | 
| static class  | MethodCall.TargetHandler.ForMethodCallA target handler that executes the method and uses it's return value as the target object. | 
| static class  | MethodCall.TargetHandler.ForMethodParameterA target handler that loads the parameter of the given index as the target object. | 
| static class  | MethodCall.TargetHandler.ForSelfOrStaticInvocationA target handler that invokes a method either on the instance of the instrumented
 type or as a static method. | 
| static class  | MethodCall.TargetHandler.ForValueA target handler that invokes a method on an instance that is stored in a static field. | 
| static class  | MethodCall.TargetHandler.SimpleA simple target handler that applies a given stack manipulation. | 
| Modifier and Type | Method and Description | 
|---|---|
| MethodCall.TargetHandler | MethodCall.TargetHandler.Factory. make(Implementation.Target implementationTarget)Creates a target handler for a given implementation target. | 
| MethodCall.TargetHandler | MethodCall.TargetHandler.Simple. make(Implementation.Target implementationTarget)Creates a target handler for a given implementation target. | 
| MethodCall.TargetHandler | MethodCall.TargetHandler.ForSelfOrStaticInvocation.Factory. make(Implementation.Target implementationTarget)Creates a target handler for a given implementation target. | 
| MethodCall.TargetHandler | MethodCall.TargetHandler.ForValue.Factory. make(Implementation.Target implementationTarget)Creates a target handler for a given implementation target. | 
| MethodCall.TargetHandler | MethodCall.TargetHandler.ForField.Factory. make(Implementation.Target implementationTarget)Creates a target handler for a given implementation target. | 
| MethodCall.TargetHandler | MethodCall.TargetHandler.ForMethodParameter. make(Implementation.Target implementationTarget)Creates a target handler for a given implementation target. | 
| MethodCall.TargetHandler | MethodCall.TargetHandler.ForMethodCall.Factory. make(Implementation.Target implementationTarget)Creates a target handler for a given implementation target. | 
Copyright © 2014–2024. All rights reserved.