Package | Description |
---|---|
net.bytebuddy.agent.builder |
An agent builder is used to easily implement load-time class-transformations using a Java agent.
|
net.bytebuddy.build |
A package for types that allow for applying Byte Buddy transformation during a build process.
|
Modifier and Type | Method and Description |
---|---|
static AgentBuilder |
AgentBuilder.Default.of(EntryPoint entryPoint,
ClassFileVersion classFileVersion,
List<? extends Plugin> plugins)
Creates an
AgentBuilder that realizes the provided build plugins. |
static AgentBuilder |
AgentBuilder.Default.of(EntryPoint entryPoint,
ClassFileVersion classFileVersion,
Plugin... plugin)
Creates an
AgentBuilder that realizes the provided build plugins. |
static AgentBuilder |
AgentBuilder.Default.of(EntryPoint entryPoint,
List<? extends Plugin> plugins)
Creates an
AgentBuilder that realizes the provided build plugins. |
static AgentBuilder |
AgentBuilder.Default.of(EntryPoint entryPoint,
Plugin... plugin)
Creates an
AgentBuilder that realizes the provided build plugins. |
Constructor and Description |
---|
ForBuildEntryPoint(EntryPoint entryPoint)
Creates a new type strategy for an entry point.
|
Modifier and Type | Class and Description |
---|---|
static class |
EntryPoint.Default
Default implementations for an entry point.
|
static class |
EntryPoint.Unvalidated
An entry point that wraps another entry point but disables validation.
|
Modifier and Type | Method and Description |
---|---|
static Plugin.Engine |
Plugin.Engine.Default.of(EntryPoint entryPoint,
ClassFileVersion classFileVersion,
MethodNameTransformer methodNameTransformer)
Creates a plugin engine from an
EntryPoint . |
Constructor and Description |
---|
ForEntryPoint(EntryPoint entryPoint,
MethodNameTransformer methodNameTransformer)
Creates a new type stratrgy for an entry point.
|
Unvalidated(EntryPoint delegate)
Creates a new entry point with disabled validation.
|
Copyright © 2014–2024. All rights reserved.