Package | Description |
---|---|
net.bytebuddy.dynamic |
This package contains classes and interfaces that are connected to writing the byte stream that represents a Java
type that is dynamically created and for loading this type into a running JVM process.
|
net.bytebuddy.dynamic.scaffold |
This package contains helper types and implementations that are responsible for the actual writing of a byte array
representing a Java class.
|
net.bytebuddy.utility.visitor |
A package containing visitor classes for ASM.
|
Modifier and Type | Method and Description |
---|---|
ContextClassVisitor |
DynamicType.Builder.wrap(ClassVisitor classVisitor)
Wraps a class visitor with the configuration that is represented by this dynamic type builder, using a
default
TypePool . |
ContextClassVisitor |
DynamicType.Builder.AbstractBase.wrap(ClassVisitor classVisitor)
Wraps a class visitor with the configuration that is represented by this dynamic type builder, using a
default
TypePool . |
ContextClassVisitor |
DynamicType.Builder.wrap(ClassVisitor classVisitor,
int writerFlags,
int readerFlags)
Wraps a class visitor with the configuration that is represented by this dynamic type builder, using a
default
TypePool . |
ContextClassVisitor |
DynamicType.Builder.AbstractBase.Delegator.wrap(ClassVisitor classVisitor,
int writerFlags,
int readerFlags)
Wraps a class visitor with the configuration that is represented by this dynamic type builder, using a
default
TypePool . |
ContextClassVisitor |
DynamicType.Builder.AbstractBase.UsingTypeWriter.wrap(ClassVisitor classVisitor,
int writerFlags,
int readerFlags)
Wraps a class visitor with the configuration that is represented by this dynamic type builder, using a
default
TypePool . |
ContextClassVisitor |
DynamicType.Builder.wrap(ClassVisitor classVisitor,
TypePool typePool)
Wraps a class visitor with the configuration that is represented by this dynamic type builder.
|
ContextClassVisitor |
DynamicType.Builder.AbstractBase.wrap(ClassVisitor classVisitor,
TypePool typePool)
Wraps a class visitor with the configuration that is represented by this dynamic type builder.
|
ContextClassVisitor |
DynamicType.Builder.wrap(ClassVisitor classVisitor,
TypePool typePool,
int writerFlags,
int readerFlags)
Wraps a class visitor with the configuration that is represented by this dynamic type builder.
|
ContextClassVisitor |
DynamicType.Builder.AbstractBase.Delegator.wrap(ClassVisitor classVisitor,
TypePool typePool,
int writerFlags,
int readerFlags)
Wraps a class visitor with the configuration that is represented by this dynamic type builder.
|
ContextClassVisitor |
DynamicType.Builder.AbstractBase.UsingTypeWriter.wrap(ClassVisitor classVisitor,
TypePool typePool,
int writerFlags,
int readerFlags)
Wraps a class visitor with the configuration that is represented by this dynamic type builder.
|
Modifier and Type | Class and Description |
---|---|
protected class |
TypeWriter.Default.ForCreation.ImplementationContextClassVisitor
A context class visitor based on an
Implementation.Context . |
protected class |
TypeWriter.Default.ForInlining.RegistryContextClassVisitor
A context class visitor based on a
TypeWriter.Default.ForInlining.ContextRegistry . |
Modifier and Type | Method and Description |
---|---|
ContextClassVisitor |
TypeWriter.wrap(ClassVisitor classVisitor,
int writerFlags,
int readerFlags)
Wraps another ASM class visitor with a visitor that represents this ASM class writer.
|
ContextClassVisitor |
TypeWriter.Default.ForInlining.wrap(ClassVisitor classVisitor,
int writerFlags,
int readerFlags)
Wraps another ASM class visitor with a visitor that represents this ASM class writer.
|
ContextClassVisitor |
TypeWriter.Default.ForCreation.wrap(ClassVisitor classVisitor,
int writerFlags,
int readerFlags)
Wraps another ASM class visitor with a visitor that represents this ASM class writer.
|
Modifier and Type | Method and Description |
---|---|
ContextClassVisitor |
ContextClassVisitor.active()
Allows this class visitor to result in auxiliary types or an active type initializer.
|
Copyright © 2014–2023. All rights reserved.