Uses of Interface
net.bytebuddy.implementation.FixedValue.AssignerConfigurable
-
Packages that use FixedValue.AssignerConfigurable Package Description net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls. -
-
Uses of FixedValue.AssignerConfigurable in net.bytebuddy.implementation
Classes in net.bytebuddy.implementation that implement FixedValue.AssignerConfigurable Modifier and Type Class Description protected static class
FixedValue.ForArgument
A fixed value implementation that returns a method's argument.protected static class
FixedValue.ForOriginType
A fixed value that appends the origin type of the instrumented type.protected static class
FixedValue.ForPoolValue
A fixed value implementation that represents its fixed value as a value that is written to the instrumented class's constant pool.protected static class
FixedValue.ForThisValue
A fixed value ofthis
.protected static class
FixedValue.ForValue
A fixed value implementation that represents its fixed value as a static field of the instrumented class.Methods in net.bytebuddy.implementation that return FixedValue.AssignerConfigurable Modifier and Type Method Description static FixedValue.AssignerConfigurable
FixedValue. argument(int index)
Returns the argument at the specified index.static FixedValue.AssignerConfigurable
FixedValue. originType()
Returns the origin type from an instrumented method.static FixedValue.AssignerConfigurable
FixedValue. reference(java.lang.Object fixedValue)
Other thanFixedValue.value(Object)
, this function will create a fixed value implementation that will always defined a field in the instrumented class.static FixedValue.AssignerConfigurable
FixedValue. reference(java.lang.Object fixedValue, java.lang.String fieldName)
Other thanFixedValue.value(Object)
, this function will create a fixed value implementation that will always defined a field in the instrumented class.static FixedValue.AssignerConfigurable
FixedValue. self()
Returnsthis
from an instrumented method.static FixedValue.AssignerConfigurable
FixedValue. value(java.lang.Object fixedValue)
Returns a fixed value from any intercepted method.static FixedValue.AssignerConfigurable
FixedValue. value(TypeDescription fixedValue)
Returns the given type in form of a loaded type.static FixedValue.AssignerConfigurable
FixedValue. value(JavaConstant fixedValue)
Returns the loaded version of the givenJavaConstant
.
-