| Package | Description | 
|---|---|
| net.bytebuddy.implementation | 
 The implementation package contains any logic for intercepting method calls. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
static class  | 
MethodCall.MethodInvoker.ForContextualInvocation
Applies a contextual invocation of the provided method, i.e. a static invocation for static methods,
 a special invocation for constructors and private methods and a virtual invocation for any other method. 
 | 
static class  | 
MethodCall.MethodInvoker.ForDefaultMethodInvocation
Invokes a method as a Java 8 default method. 
 | 
static class  | 
MethodCall.MethodInvoker.ForSuperMethodInvocation
Applies a super method invocation of the provided method. 
 | 
static class  | 
MethodCall.MethodInvoker.ForVirtualInvocation
Applies a virtual invocation on a given type. 
 | 
static class  | 
MethodCall.MethodInvoker.ForVirtualInvocation.WithImplicitType
A method invoker for a virtual method that uses an implicit target type. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
protected MethodCall.MethodInvoker | 
MethodCall.methodInvoker
The method invoker to use. 
 | 
| Constructor and Description | 
|---|
MethodCall(MethodCall.MethodLocator methodLocator,
          MethodCall.TargetHandler targetHandler,
          List<MethodCall.ArgumentLoader.Factory> argumentLoaders,
          MethodCall.MethodInvoker methodInvoker,
          MethodCall.TerminationHandler terminationHandler,
          Assigner assigner,
          Assigner.Typing typing)
Creates a new method call implementation. 
 | 
Copyright © 2014–2016. All rights reserved.