Uses of Interface
net.bytebuddy.utility.JavaConstant.Visitor
-
Packages that use JavaConstant.Visitor Package Description 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.Visitor in net.bytebuddy.implementation.bytecode.constant
Classes in net.bytebuddy.implementation.bytecode.constant that implement JavaConstant.Visitor Modifier and Type Class Description static class
JavaConstantValue.Visitor
A visitor to resolve aJavaConstant
to a ASM constant pool representation. -
Uses of JavaConstant.Visitor in net.bytebuddy.utility
Classes in net.bytebuddy.utility that implement JavaConstant.Visitor Modifier and Type Class Description static class
JavaConstant.Visitor.NoOp
A non-operational implementation of aJavaConstant.Visitor
for aJavaConstant
.Methods in net.bytebuddy.utility with parameters of type JavaConstant.Visitor Modifier and Type Method Description <T> T
JavaConstant. accept(JavaConstant.Visitor<T> visitor)
Applies the supplied visitor to this constant type with its respective callback.<T> T
JavaConstant.Dynamic. accept(JavaConstant.Visitor<T> visitor)
Applies the supplied visitor to this constant type with its respective callback.<T> T
JavaConstant.MethodHandle. accept(JavaConstant.Visitor<T> visitor)
Applies the supplied visitor to this constant type with its respective callback.<T> T
JavaConstant.MethodType. accept(JavaConstant.Visitor<T> visitor)
Applies the supplied visitor to this constant type with its respective callback.<T> T
JavaConstant.Simple.OfTrivialValue. accept(JavaConstant.Visitor<T> visitor)
Applies the supplied visitor to this constant type with its respective callback.<T> T
JavaConstant.Simple.OfTypeDescription. accept(JavaConstant.Visitor<T> visitor)
Applies the supplied visitor to this constant type with its respective callback.
-