Uses of Interface
net.bytebuddy.build.EntryPoint
-
Packages that use EntryPoint 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.net.bytebuddy.build.maven A package containing classes for applying Byte Buddy transformers within a Maven build. -
-
Uses of EntryPoint in net.bytebuddy.agent.builder
Fields in net.bytebuddy.agent.builder declared as EntryPoint Modifier and Type Field Description private EntryPoint
AgentBuilder.TypeStrategy.ForBuildEntryPoint. entryPoint
The entry point to apply.Methods in net.bytebuddy.agent.builder with parameters of type EntryPoint Modifier and Type Method Description 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, Plugin... plugin)
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(EntryPoint entryPoint, ClassFileVersion classFileVersion, Plugin... plugin)
Creates anAgentBuilder
that realizes the provided build plugins.Constructors in net.bytebuddy.agent.builder with parameters of type EntryPoint Constructor Description ForBuildEntryPoint(EntryPoint entryPoint)
Creates a new type strategy for an entry point. -
Uses of EntryPoint in net.bytebuddy.build
Classes in net.bytebuddy.build that implement EntryPoint Modifier and Type Class Description static class
EntryPoint.Default
Default implementations for an entry point.Fields in net.bytebuddy.build declared as EntryPoint Modifier and Type Field Description private EntryPoint
Plugin.Engine.TypeStrategy.ForEntryPoint. entryPoint
The represented entry point.Methods in net.bytebuddy.build with parameters of type EntryPoint Modifier and Type Method Description static Plugin.Engine
Plugin.Engine.Default. of(EntryPoint entryPoint, ClassFileVersion classFileVersion, MethodNameTransformer methodNameTransformer)
Creates a plugin engine from anEntryPoint
.Constructors in net.bytebuddy.build with parameters of type EntryPoint Constructor Description ForEntryPoint(EntryPoint entryPoint, MethodNameTransformer methodNameTransformer)
Creates a new type stratrgy for an entry point. -
Uses of EntryPoint in net.bytebuddy.build.maven
Methods in net.bytebuddy.build.maven that return EntryPoint Modifier and Type Method Description EntryPoint
Initialization. getEntryPoint(ClassLoaderResolver classLoaderResolver, java.lang.String groupId, java.lang.String artifactId, java.lang.String version, java.lang.String packaging)
Resolves the described entry point.
-