Uses of Interface
net.bytebuddy.utility.JavaConstant.Visitor
-
Packages that use JavaConstant.Visitor Package Description net.bytebuddy.implementation.bytecode.constant StackManipulations 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 classJavaConstantValue.VisitorA visitor to resolve aJavaConstantto an 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 classJavaConstant.Visitor.NoOpA non-operational implementation of aJavaConstant.Visitorfor aJavaConstant.Methods in net.bytebuddy.utility with parameters of type JavaConstant.Visitor Modifier and Type Method Description <T> TJavaConstant. accept(JavaConstant.Visitor<T> visitor)Applies the supplied visitor to this constant type with its respective callback.<T> TJavaConstant.Dynamic. accept(JavaConstant.Visitor<T> visitor)Applies the supplied visitor to this constant type with its respective callback.<T> TJavaConstant.MethodHandle. accept(JavaConstant.Visitor<T> visitor)Applies the supplied visitor to this constant type with its respective callback.<T> TJavaConstant.MethodType. accept(JavaConstant.Visitor<T> visitor)Applies the supplied visitor to this constant type with its respective callback.<T> TJavaConstant.Simple.OfTrivialValue. accept(JavaConstant.Visitor<T> visitor)Applies the supplied visitor to this constant type with its respective callback.<T> TJavaConstant.Simple.OfTypeDescription. accept(JavaConstant.Visitor<T> visitor)Applies the supplied visitor to this constant type with its respective callback.
-