Package | Description |
---|---|
net.bytebuddy.implementation |
The implementation package contains any logic for intercepting method calls.
|
Modifier and Type | Class and Description |
---|---|
static class |
MethodCall.ArgumentLoader.ForBooleanConstant
Loads a
boolean value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForByteConstant
Loads a
byte value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForCharacterConstant
Loads a
char value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForClassConstant
Loads a
Class value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForDoubleConstant
Loads a
double value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForEnumerationValue
An argument loader that loads an enumeration constant.
|
protected static class |
MethodCall.ArgumentLoader.ForField.Factory
A factory for an argument loaded that loads the value of an existing field as an argument.
|
static class |
MethodCall.ArgumentLoader.ForFloatConstant
Loads a
float value onto the operand stack. |
protected static class |
MethodCall.ArgumentLoader.ForInstance.Factory
A factory that supplies the value of a static field as an argument.
|
protected static class |
MethodCall.ArgumentLoader.ForInstrumentedType.Factory
A factory for an argument loader that supplies the instrumented type as an argument.
|
static class |
MethodCall.ArgumentLoader.ForIntegerConstant
Loads an
int value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForJavaConstant
Loads a Java instance onto the operand stack.
|
static class |
MethodCall.ArgumentLoader.ForLongConstant
Loads a
long value onto the operand stack. |
protected static class |
MethodCall.ArgumentLoader.ForMethodParameter.Factory
A factory for an argument loader that supplies a method parameter as an argument.
|
protected static class |
MethodCall.ArgumentLoader.ForMethodParameter.OfInstrumentedMethod
A factory for argument loaders that supplies all arguments of the instrumented method as arguments.
|
protected static class |
MethodCall.ArgumentLoader.ForMethodParameterArray.OfInvokedMethod
An argument loader factory that loads an array element from a parameter for each argument of the invoked method.
|
protected static class |
MethodCall.ArgumentLoader.ForMethodParameterArray.OfParameter
Creates an argument loader for an array element that of a specific parameter.
|
static class |
MethodCall.ArgumentLoader.ForNullConstant
An argument loader that loads the
null value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForShortConstant
Loads a
short value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForTextConstant
Loads a
String value onto the operand stack. |
protected static class |
MethodCall.ArgumentLoader.ForThisReference.Factory
A factory for an argument loader that supplies the
this value as an argument. |
Modifier and Type | Field and Description |
---|---|
protected List<MethodCall.ArgumentLoader.Factory> |
MethodCall.argumentLoaders
The argument loader to load arguments onto the operand stack in their application order.
|
Modifier and Type | Method and Description |
---|---|
protected static MethodCall.ArgumentLoader.Factory |
MethodCall.ArgumentLoader.ForInstance.Factory.of(Object value)
Creates a factory for loading the supplied value as an argument, either stored as a static field or as a constant pool value.
|
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–2017. All rights reserved.