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.net.bytebuddy.build A package for types that allow for applying Byte Buddy transformation during a build process. -
-
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
. -
Uses of Plugin in net.bytebuddy.build
Classes in net.bytebuddy.build that implement Plugin Modifier and Type Class Description class
HashCodeAndEqualsPlugin
A build tool plugin that addsObject.hashCode()
andObject.equals(Object)
methods to a class if theHashCodeAndEqualsPlugin.Enhance
annotation is present and no explicit method declaration was added.static class
HashCodeAndEqualsPlugin.WithNonNullableFields
A version of theHashCodeAndEqualsPlugin
that assumes that all fields are non-nullable unless they are explicitly marked.class
ToStringPlugin
A build tool plugin that adds aObject.toString()
and method to a class if theToStringPlugin.Enhance
annotation is present and no explicit method declaration was added.
-