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.ForInstrumentedType
Loads the instrumented type onto the operand stack.
|
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. |
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.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 | Method and Description |
---|---|
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod)
Creates any number of argument loaders for an instrumentation.
|
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForNullConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForThisReference.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForInstrumentedType.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForMethodParameter.OfInstrumentedMethod.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForMethodParameter.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForStaticField.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForInstanceField.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForExistingField.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForBooleanConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForByteConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForShortConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForCharacterConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForIntegerConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForLongConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForFloatConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForDoubleConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForTextConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForClassConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForEnumerationValue.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForJavaConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod) |
Copyright © 2014–2016. All rights reserved.