Uses of Interface
net.bytebuddy.utility.JavaConstant
-
Packages that use JavaConstant Package Description net.bytebuddy.implementation The implementation package contains any logic for intercepting method calls.net.bytebuddy.implementation.bytecode.constant StackManipulation
s in this package are responsible for creating compile-time constants and pushing them onto the operand stack.net.bytebuddy.utility This package contains utility classes for common use within any Byte Buddy logic. -
-
Uses of JavaConstant in net.bytebuddy.implementation
Methods in net.bytebuddy.implementation with parameters of type JavaConstant Modifier and Type Method Description static FixedValue.AssignerConfigurable
FixedValue. value(JavaConstant fixedValue)
Returns the loaded version of the givenJavaConstant
.MethodCall
MethodCall. with(JavaConstant... javaConstant)
Defines the given Java instances to be provided as arguments to the invoked method where the given instances are stored in the generated class's constant pool.InvokeDynamic
InvokeDynamic.AbstractDelegator. withInstance(JavaConstant... javaConstant)
InvokeDynamic
InvokeDynamic. withInstance(JavaConstant... javaConstant)
Hands the provided Java instance to the dynamically bound method.Constructors in net.bytebuddy.implementation with parameters of type JavaConstant Constructor Description ForJavaConstant(JavaConstant javaConstant)
Creates a new argument provider for the given Java instance. -
Uses of JavaConstant in net.bytebuddy.implementation.bytecode.constant
Constructors in net.bytebuddy.implementation.bytecode.constant with parameters of type JavaConstant Constructor Description JavaConstantValue(JavaConstant javaConstant)
Creates a constant pool value representing aJavaConstant
. -
Uses of JavaConstant in net.bytebuddy.utility
Classes in net.bytebuddy.utility that implement JavaConstant Modifier and Type Class Description static class
JavaConstant.MethodHandle
Represents ajava.lang.invoke.MethodHandle
object.static class
JavaConstant.MethodType
Represents ajava.lang.invoke.MethodType
object.
-