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.ForField
Loads the value of an existing field onto the operand stack.
|
static class |
MethodCall.ArgumentLoader.ForInstance
Loads a value onto the operand stack that is stored in a static field.
|
static class |
MethodCall.ArgumentLoader.ForInstrumentedType
Loads the instrumented type onto the operand stack.
|
static class |
MethodCall.ArgumentLoader.ForMethodParameter
Loads a parameter of the instrumented method onto the operand stack.
|
static class |
MethodCall.ArgumentLoader.ForMethodParameterArray
Loads an array containing all arguments of a method.
|
static class |
MethodCall.ArgumentLoader.ForMethodParameterArrayElement
An argument loader that loads an element of a parameter of an array type.
|
static class |
MethodCall.ArgumentLoader.ForNullConstant
An argument loader that loads the
null value onto the operand stack. |
static class |
MethodCall.ArgumentLoader.ForStackManipulation
Loads a stack manipulation resulting in a specific type as an argument.
|
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,
MethodDescription invokedMethod)
Creates any number of argument loaders for an instrumentation.
|
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForNullConstant.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod,
MethodDescription invokedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForThisReference.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod,
MethodDescription invokedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForInstrumentedType.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod,
MethodDescription invokedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForMethodParameter.OfInstrumentedMethod.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod,
MethodDescription invokedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForMethodParameter.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod,
MethodDescription invokedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForMethodParameterArray.ForInstrumentedMethod.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod,
MethodDescription invokedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForMethodParameterArrayElement.OfParameter.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod,
MethodDescription invokedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForMethodParameterArrayElement.OfInvokedMethod.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod,
MethodDescription invokedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForInstance.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod,
MethodDescription invokedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForField.Factory.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod,
MethodDescription invokedMethod) |
List<MethodCall.ArgumentLoader> |
MethodCall.ArgumentLoader.ForStackManipulation.make(TypeDescription instrumentedType,
MethodDescription instrumentedMethod,
MethodDescription invokedMethod) |
Copyright © 2014–2017. All rights reserved.