| Package | Description |
|---|---|
| net.bytebuddy.agent.builder |
An agent builder is used to easily implement load-time class-transformations using a Java agent.
|
| Modifier and Type | Class and Description |
|---|---|
protected static class |
AgentBuilder.Default.Transformation
A registered transformation as a combination of a
AgentBuilder.RawMatcher and a
AgentBuilder.Transformer. |
static class |
AgentBuilder.Transformer.Compound
A compound transformer that allows to group several
AgentBuilder.Transformers as a single transformer. |
static class |
AgentBuilder.Transformer.NoOp
A no-op implementation of a
AgentBuilder.Transformer that does
not modify the supplied dynamic type. |
| Modifier and Type | Method and Description |
|---|---|
AgentBuilder.Identified.Extendable |
AgentBuilder.Identified.transform(AgentBuilder.Transformer transformer)
Applies the given transformer for the already supplied matcher.
|
AgentBuilder.Identified.Extendable |
AgentBuilder.Default.Matched.transform(AgentBuilder.Transformer transformer) |
| Constructor and Description |
|---|
Compound(AgentBuilder.Transformer... transformer)
Creates a new compound transformer.
|
Matched(AgentBuilder.RawMatcher rawMatcher,
AgentBuilder.Transformer transformer)
Creates a new matched default agent builder.
|
Transformation(AgentBuilder.RawMatcher rawMatcher,
AgentBuilder.Transformer transformer)
Creates a new transformation.
|
Copyright © 2014–2015. All rights reserved.