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 classFixedValue.ForArgumentA fixed value implementation that returns a method's argument.protected static classFixedValue.ForOriginTypeA fixed value that appends the origin type of the instrumented type.protected static classFixedValue.ForPoolValueA fixed value implementation that represents its fixed value as a value that is written to the instrumented class's constant pool.protected static classFixedValue.ForThisValueA fixed value ofthis.protected static classFixedValue.ForValueA 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.AssignerConfigurableFixedValue. argument(int index)Returns the argument at the specified index.static FixedValue.AssignerConfigurableFixedValue. originType()Returns the origin type from an instrumented method.static FixedValue.AssignerConfigurableFixedValue. 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.AssignerConfigurableFixedValue. 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.AssignerConfigurableFixedValue. self()Returnsthisfrom an instrumented method.static FixedValue.AssignerConfigurableFixedValue. value(java.lang.Object fixedValue)Returns a fixed value from any intercepted method.static FixedValue.AssignerConfigurableFixedValue. value(TypeDescription fixedValue)Returns the given type in form of a loaded type.static FixedValue.AssignerConfigurableFixedValue. value(JavaConstant fixedValue)Returns the loaded version of the givenJavaConstant.
-