public interface AsmClassWriter
ClassVisitor
that writes a class file.Modifier and Type | Interface and Description |
---|---|
static interface |
AsmClassWriter.Factory
A factory for creating an
AsmClassWriter . |
static class |
AsmClassWriter.ForAsm
Am implementation that uses ASM's internal
ClassWriter . |
static class |
AsmClassWriter.ForClassFileApi
A Class File API-based implementation for a class writer.
|
static class |
AsmClassWriter.FrameComputingClassWriter
A class writer that piggy-backs on Byte Buddy's
TypePool to avoid class loading or look-up errors when redefining a class. |
static class |
AsmClassWriter.SuperClassResolvingJdkClassWriter
A pseudo-JDK class writer that resolves super classes using a
TypePool , to pass in the constructor. |
Modifier and Type | Method and Description |
---|---|
byte[] |
getBinaryRepresentation()
Returns the binary representation of the created class file.
|
ClassVisitor |
getVisitor()
Returns the
ClassVisitor to use for writing the class file. |
ClassVisitor getVisitor()
ClassVisitor
to use for writing the class file.byte[] getBinaryRepresentation()
Copyright © 2014–2025. All rights reserved.