Uses of Interface
net.bytebuddy.build.Plugin.Factory.UsingReflection.ArgumentResolver
Packages that use Plugin.Factory.UsingReflection.ArgumentResolver
Package
Description
A package for types that allow for applying Byte Buddy transformation during a build process.
A package containing classes for applying Byte Buddy transformers within a Maven build.
-
Uses of Plugin.Factory.UsingReflection.ArgumentResolver in net.bytebuddy.build
Classes in net.bytebuddy.build that implement Plugin.Factory.UsingReflection.ArgumentResolverModifier and TypeClassDescriptionstatic class
An argument resolver that resolves an argument for a specific parameter index.static class
An argument resolver that resolves an argument for a specific parameter index by attempting a conversion via invoking a staticvalueOf
method on the target type, if it exists.static class
An argument resolver that resolves parameters for a given type.static enum
An argument resolver that never resolves an argument.Fields in net.bytebuddy.build with type parameters of type Plugin.Factory.UsingReflection.ArgumentResolverModifier and TypeFieldDescriptionprivate final List<Plugin.Factory.UsingReflection.ArgumentResolver>
Plugin.Factory.UsingReflection.argumentResolvers
A list of argument providers that can be used for instantiating the plugin.Methods in net.bytebuddy.build that return Plugin.Factory.UsingReflection.ArgumentResolverModifier and TypeMethodDescriptionCreates an argument resolver for a given type.Methods in net.bytebuddy.build with parameters of type Plugin.Factory.UsingReflection.ArgumentResolverModifier and TypeMethodDescriptionPlugin.Factory.UsingReflection.with
(Plugin.Factory.UsingReflection.ArgumentResolver... argumentResolver) Appends the supplied argument resolvers.Method parameters in net.bytebuddy.build with type arguments of type Plugin.Factory.UsingReflection.ArgumentResolverModifier and TypeMethodDescriptionPlugin.Factory.UsingReflection.with
(List<? extends Plugin.Factory.UsingReflection.ArgumentResolver> argumentResolvers) Appends the supplied argument resolvers.Constructor parameters in net.bytebuddy.build with type arguments of type Plugin.Factory.UsingReflection.ArgumentResolverModifierConstructorDescriptionprotected
UsingReflection
(Class<? extends Plugin> type, List<Plugin.Factory.UsingReflection.ArgumentResolver> argumentResolvers) Creates a plugin factory that uses reflection for creating a plugin. -
Uses of Plugin.Factory.UsingReflection.ArgumentResolver in net.bytebuddy.build.maven
Methods in net.bytebuddy.build.maven that return Plugin.Factory.UsingReflection.ArgumentResolverModifier and TypeMethodDescriptionPluginArgument.toArgumentResolver()
Resolves this plugin argument to an argument resolver.Methods in net.bytebuddy.build.maven that return types with arguments of type Plugin.Factory.UsingReflection.ArgumentResolverModifier and TypeMethodDescriptionTransformation.makeArgumentResolvers()
Creates the argument resolvers for the plugin's constructor by transforming the plugin arguments.protected List<? extends Plugin.Factory.UsingReflection.ArgumentResolver>
ByteBuddyMojo.Transformer.ForConfiguredPlugin.toArgumentResolvers()
protected List<? extends Plugin.Factory.UsingReflection.ArgumentResolver>
ByteBuddyMojo.Transformer.ForDiscoveredPlugin.toArgumentResolvers()
protected abstract List<? extends Plugin.Factory.UsingReflection.ArgumentResolver>
ByteBuddyMojo.Transformer.toArgumentResolvers()
Returns the argument resolvers to use.