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 AgentBuilderAgentBuilder.Default. of(EntryPoint entryPoint, Plugin... plugin)Creates anAgentBuilderthat realizes the provided build plugins.static AgentBuilderAgentBuilder.Default. of(EntryPoint entryPoint, ClassFileVersion classFileVersion, Plugin... plugin)Creates anAgentBuilderthat realizes the provided build plugins.static AgentBuilderAgentBuilder.Default. of(Plugin... plugin)Creates anAgentBuilderthat realizes the provided build plugins.static AgentBuilderAgentBuilder.Default. of(ClassFileVersion classFileVersion, Plugin... plugin)Creates anAgentBuilderthat realizes the provided build plugins.Method parameters in net.bytebuddy.agent.builder with type arguments of type Plugin Modifier and Type Method Description static AgentBuilderAgentBuilder.Default. of(java.util.List<? extends Plugin> plugins)Creates anAgentBuilderthat realizes the provided build plugins.static AgentBuilderAgentBuilder.Default. of(EntryPoint entryPoint, java.util.List<? extends Plugin> plugins)Creates anAgentBuilderthat realizes the provided build plugins.static AgentBuilderAgentBuilder.Default. of(EntryPoint entryPoint, ClassFileVersion classFileVersion, java.util.List<? extends Plugin> plugins)Creates anAgentBuilderthat realizes the provided build plugins.static AgentBuilderAgentBuilder.Default. of(ClassFileVersion classFileVersion, java.util.List<? extends Plugin> plugins)Creates anAgentBuilderthat 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 classHashCodeAndEqualsPluginA build tool plugin that addsObject.hashCode()andObject.equals(Object)methods to a class if theHashCodeAndEqualsPlugin.Enhanceannotation is present and no explicit method declaration was added.static classHashCodeAndEqualsPlugin.WithNonNullableFieldsA version of theHashCodeAndEqualsPluginthat assumes that all fields are non-nullable unless they are explicitly marked.classToStringPluginA build tool plugin that adds aObject.toString()and method to a class if theToStringPlugin.Enhanceannotation is present and no explicit method declaration was added.
-