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. |
Modifier and Type | Interface and Description |
---|---|
static interface |
DynamicType.Builder.InnerTypeDefinition.ForType<U>
An inner type definition for defining a type that is contained within another type.
|
Modifier and Type | Class and Description |
---|---|
protected class |
DynamicType.Builder.AbstractBase.Adapter.InnerTypeDefinitionForMethodAdapter
An adapter for applying an inner type definition for an outer method or constructor.
|
protected class |
DynamicType.Builder.AbstractBase.Adapter.InnerTypeDefinitionForTypeAdapter
An adapter for applying an inner type definition for an outer type.
|
Modifier and Type | Method and Description |
---|---|
DynamicType.Builder.InnerTypeDefinition<T> |
DynamicType.Builder.innerTypeOf(Constructor<?> constructor)
Defines this type as an inner type that was declared within the supplied constructor.
|
DynamicType.Builder.InnerTypeDefinition<S> |
DynamicType.Builder.AbstractBase.innerTypeOf(Constructor<?> constructor)
Defines this type as an inner type that was declared within the supplied constructor.
|
DynamicType.Builder.InnerTypeDefinition<T> |
DynamicType.Builder.innerTypeOf(Method method)
Defines this type as an inner type that was declared within the supplied method.
|
DynamicType.Builder.InnerTypeDefinition<S> |
DynamicType.Builder.AbstractBase.innerTypeOf(Method method)
Defines this type as an inner type that was declared within the supplied method.
|
DynamicType.Builder.InnerTypeDefinition<T> |
DynamicType.Builder.innerTypeOf(MethodDescription.InDefinedShape methodDescription)
Defines this type as an inner type that was declared within the supplied method or constructor.
|
DynamicType.Builder.InnerTypeDefinition<U> |
DynamicType.Builder.AbstractBase.Delegator.innerTypeOf(MethodDescription.InDefinedShape methodDescription)
Defines this type as an inner type that was declared within the supplied method or constructor.
|
DynamicType.Builder.InnerTypeDefinition<U> |
DynamicType.Builder.AbstractBase.Adapter.innerTypeOf(MethodDescription.InDefinedShape methodDescription)
Defines this type as an inner type that was declared within the supplied method or constructor.
|
Modifier and Type | Method and Description |
---|---|
DynamicType.Builder.InnerTypeDefinition<T> |
DecoratingDynamicTypeBuilder.innerTypeOf(MethodDescription.InDefinedShape methodDescription)
Defines this type as an inner type that was declared within the supplied method or constructor.
|
Copyright © 2014–2020. All rights reserved.