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.
|
static class |
MethodCall.ArgumentLoader.ForExistingField
Loads the value of an existing field onto the operand stack.
|
static class |
MethodCall.ArgumentLoader.ForFloatConstant
Loads a
float value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForInstanceField
Loads a value onto the operand stack that is stored in an instance field.
|
static class |
MethodCall.ArgumentLoader.ForIntegerConstant
Loads an
int value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForJavaInstance
Loads a Java instance onto the operand stack.
|
static class |
MethodCall.ArgumentLoader.ForLongConstant
Loads a
long value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForMethodParameter
Loads a parameter of the instrumented method onto the operand stack.
|
static class |
MethodCall.ArgumentLoader.ForNullConstant
An argument loader that loads the
null value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForOwnType
Loads the instrumented type onto the operand stack.
|
static class |
MethodCall.ArgumentLoader.ForShortConstant
Loads a
short value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForStaticField
Loads a value onto the operand stack that is stored in a static field.
|
static class |
MethodCall.ArgumentLoader.ForTextConstant
Loads a
String value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForThisReference
An argument loader that assigns the
this reference to a parameter. |
Modifier and Type | Field and Description |
---|---|
protected List<MethodCall.ArgumentLoader> |
MethodCall.argumentLoaders
The argument loader to load arguments onto the operand stack in their application order.
|
Modifier and Type | Method and Description |
---|---|
static MethodCall.ArgumentLoader |
MethodCall.ArgumentLoader.ForStaticField.of(Object value)
Resolves a value to be stored to be stored in the constant pool of the class, if possible.
|
Constructor and Description |
---|
MethodCall(MethodCall.MethodLocator methodLocator,
MethodCall.TargetHandler targetHandler,
List<MethodCall.ArgumentLoader> argumentLoaders,
MethodCall.MethodInvoker methodInvoker,
MethodCall.TerminationHandler terminationHandler,
Assigner assigner,
Assigner.Typing typing)
Creates a new method call implementation.
|
Copyright © 2014–2015. All rights reserved.