| Package | Description | 
|---|---|
| net.bytebuddy.implementation | The implementation package contains any logic for intercepting method calls. | 
| net.bytebuddy.implementation.bind | The types and classes of this package are responsible for binding a method call to calling another method. | 
| net.bytebuddy.implementation.bind.annotation | This package contains annotations, types and classes that are responsible for binding a method to calling another
 method by interpreting annotations that indicate how a method should be bound to another method. | 
| Modifier and Type | Method and Description | 
|---|---|
| MethodDelegationBinder.MethodInvoker | MethodDelegation.ImplementationDelegate. getMethodInvoker(TypeDescription instrumentedType)Returns the method invoker responsible for invoking the delegation method. | 
| MethodDelegationBinder.MethodInvoker | MethodDelegation.ImplementationDelegate.ForStaticMethod. getMethodInvoker(TypeDescription instrumentedType) | 
| MethodDelegationBinder.MethodInvoker | MethodDelegation.ImplementationDelegate.ForStaticField. getMethodInvoker(TypeDescription instrumentedType) | 
| MethodDelegationBinder.MethodInvoker | MethodDelegation.ImplementationDelegate.ForInstanceField. getMethodInvoker(TypeDescription instrumentedType) | 
| MethodDelegationBinder.MethodInvoker | MethodDelegation.ImplementationDelegate.ForConstruction. getMethodInvoker(TypeDescription instrumentedType) | 
| Modifier and Type | Class and Description | 
|---|---|
| static class  | MethodDelegationBinder.MethodInvoker.SimpleA simple method invocation that merely uses the most general form of method invocation as provided by
  MethodInvocation. | 
| static class  | MethodDelegationBinder.MethodInvoker.VirtualA method invocation that enforces a virtual invocation that is dispatched on a given type. | 
| Constructor and Description | 
|---|
| Builder(MethodDelegationBinder.MethodInvoker methodInvoker,
       MethodDescription target)Creates a new builder for the binding of a given method. | 
| Constructor and Description | 
|---|
| TargetMethodAnnotationDrivenBinder(List<TargetMethodAnnotationDrivenBinder.ParameterBinder<?>> parameterBinders,
                                  TargetMethodAnnotationDrivenBinder.DefaultsProvider defaultsProvider,
                                  TargetMethodAnnotationDrivenBinder.TerminationHandler terminationHandler,
                                  Assigner assigner,
                                  MethodDelegationBinder.MethodInvoker methodInvoker)Creates a new method delegation binder that binds method based on annotations found on the target method. | 
Copyright © 2014–2015. All rights reserved.