Package | Description |
---|---|
net.bytebuddy.instrumentation |
The instrumentation package contains any logic for intercepting method calls.
|
Modifier and Type | Class and Description |
---|---|
protected static class |
FixedValue.ForPoolValue
A fixed value instrumentation that represents its fixed value as a value that is written to the instrumented
class's constant pool.
|
protected static class |
FixedValue.ForStaticField
A fixed value instrumentation that represents its fixed value as a static field of the instrumented class.
|
Modifier and Type | Method and Description |
---|---|
static FixedValue.AssignerConfigurable |
FixedValue.reference(Object fixedValue)
Other than
FixedValue.value(Object) , this function
will create a fixed value instrumentation that will always defined a field in the instrumented class. |
static FixedValue.AssignerConfigurable |
FixedValue.reference(Object fixedValue,
String fieldName)
Other than
FixedValue.value(Object) , this function
will create a fixed value instrumentation that will always defined a field in the instrumented class. |
static FixedValue.AssignerConfigurable |
FixedValue.value(Object fixedValue)
Creates a fixed value instrumentation that returns a fixed value.
|
Copyright © 2014. All rights reserved.