Uses of Interface
net.bytebuddy.agent.builder.AgentBuilder.Transformer
-
Packages that use AgentBuilder.Transformer Package Description net.bytebuddy.agent.builder An agent builder is used to easily implement load-time class-transformations using a Java agent. -
-
Uses of AgentBuilder.Transformer in net.bytebuddy.agent.builder
Classes in net.bytebuddy.agent.builder that implement AgentBuilder.Transformer Modifier and Type Class Description static classAgentBuilder.Transformer.CompoundA compound transformer that allows to group severalAgentBuilder.Transformers as a single transformer.static classAgentBuilder.Transformer.ForAdviceA transformer for applying anAdvicewhere this advice class might reference types of both the agent's and the user's class loader.static classAgentBuilder.Transformer.ForBuildPluginA transformer that applies a buildPlugin.static classAgentBuilder.Transformer.NoOpA no-op implementation of aAgentBuilder.Transformerthat does not modify the supplied dynamic type.Methods in net.bytebuddy.agent.builder with parameters of type AgentBuilder.Transformer Modifier and Type Method Description AgentBuilder.Default.Transformation.ResolutionAgentBuilder.Default.Transformation.Resolution.Decoratable. append(AgentBuilder.Transformer transformer)Appends the supplied transformer to this resolution.AgentBuilder.Default.Transformation.ResolutionAgentBuilder.Default.Transformation.Simple.Resolution. append(AgentBuilder.Transformer transformer)AgentBuilder.Identified.ExtendableAgentBuilder.Default.Transforming. transform(AgentBuilder.Transformer transformer)AgentBuilder.Identified.ExtendableAgentBuilder.Identified. transform(AgentBuilder.Transformer transformer)Applies the given transformer for the already supplied matcher.Constructors in net.bytebuddy.agent.builder with parameters of type AgentBuilder.Transformer Constructor Description Compound(AgentBuilder.Transformer... transformer)Creates a new compound transformer.Resolution(TypeDescription typeDescription, java.lang.ClassLoader classLoader, JavaModule module, java.security.ProtectionDomain protectionDomain, boolean loaded, TypePool typePool, AgentBuilder.Transformer transformer, boolean decorator)Creates a new active transformation.Simple(AgentBuilder.RawMatcher rawMatcher, AgentBuilder.Transformer transformer, boolean decorator)Creates a new transformation.Transforming(AgentBuilder.RawMatcher rawMatcher, AgentBuilder.Transformer transformer, boolean decorator)Creates a new matched default agent builder.Constructor parameters in net.bytebuddy.agent.builder with type arguments of type AgentBuilder.Transformer Constructor Description Compound(java.util.List<? extends AgentBuilder.Transformer> transformers)Creates a new compound transformer.
-