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.inline |
All classes and types in this package are related to creating a
DynamicType by
enhancing a given type. |
net.bytebuddy.dynamic.scaffold.subclass |
All classes and types in this package are related to creating a
DynamicType by
creating a subclass of a given type. |
Modifier and Type | Class and Description |
---|---|
static class |
DynamicType.Builder.AbstractBase.Adapter<U>
An adapter implementation of a dynamic type builder.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractInliningDynamicTypeBuilder<T>
An abstract base implementation of a dynamic type builder that alters an existing type.
|
class |
DecoratingDynamicTypeBuilder<T>
A type builder that decorates a type by allowing for the application of attribute changes and ASM visitor wrappers.
|
class |
RebaseDynamicTypeBuilder<T>
A type builder that rebases an instrumented type.
|
class |
RedefinitionDynamicTypeBuilder<T>
A type builder that redefines an instrumented type.
|
Modifier and Type | Class and Description |
---|---|
class |
SubclassDynamicTypeBuilder<T>
A type builder that creates an instrumented type as a subclass, i.e.
|
Copyright © 2014–2023. All rights reserved.