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.ForConstantValueA fixed value implementation that represents its fixed value as a constant pool value or a byte code instruction.protected static classFixedValue.ForOriginTypeA fixed value that appends the origin type of the instrumented type.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 value)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 value, java.lang.String name)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 value)Returns a fixed value from any intercepted method.static FixedValue.AssignerConfigurableFixedValue. value(TypeDescription type)Returns the given type in form of a loaded type.static FixedValue.AssignerConfigurableFixedValue. value(ConstantValue constant)Returns the loaded version of the givenJavaConstant.static FixedValue.AssignerConfigurableFixedValue. value(JavaConstant constant)Returns the loaded version of the givenJavaConstant.
-