Uses of Interface
net.bytebuddy.build.Plugin
-
Packages that use Plugin Package Description net.bytebuddy.agent.builder An agent builder is used to easily implement load-time class-transformations using a Java agent. -
-
Uses of Plugin in net.bytebuddy.agent.builder
Methods in net.bytebuddy.agent.builder with parameters of type Plugin Modifier and Type Method Description static AgentBuilder
AgentBuilder.Default. of(EntryPoint entryPoint, Plugin... plugin)
Creates anAgentBuilder
that realizes the provided build plugins.static AgentBuilder
AgentBuilder.Default. of(EntryPoint entryPoint, ClassFileVersion classFileVersion, Plugin... plugin)
Creates anAgentBuilder
that realizes the provided build plugins.static AgentBuilder
AgentBuilder.Default. of(Plugin... plugin)
Creates anAgentBuilder
that realizes the provided build plugins.static AgentBuilder
AgentBuilder.Default. of(ClassFileVersion classFileVersion, Plugin... plugin)
Creates anAgentBuilder
that realizes the provided build plugins.Method parameters in net.bytebuddy.agent.builder with type arguments of type Plugin Modifier and Type Method Description static AgentBuilder
AgentBuilder.Default. of(java.util.List<? extends Plugin> plugins)
Creates anAgentBuilder
that realizes the provided build plugins.static AgentBuilder
AgentBuilder.Default. of(EntryPoint entryPoint, java.util.List<? extends Plugin> plugins)
Creates anAgentBuilder
that realizes the provided build plugins.static AgentBuilder
AgentBuilder.Default. of(EntryPoint entryPoint, ClassFileVersion classFileVersion, java.util.List<? extends Plugin> plugins)
Creates anAgentBuilder
that realizes the provided build plugins.static AgentBuilder
AgentBuilder.Default. of(ClassFileVersion classFileVersion, java.util.List<? extends Plugin> plugins)
Creates anAgentBuilder
that realizes the provided build plugins.Constructors in net.bytebuddy.agent.builder with parameters of type Plugin Constructor Description ForBuildPlugin(Plugin plugin)
Creates a new transformer for a buildPlugin
.
-