Uses of Interface
net.bytebuddy.build.Plugin.Factory.UsingReflection.ArgumentResolver
-
Packages that use Plugin.Factory.UsingReflection.ArgumentResolver Package Description 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 Plugin.Factory.UsingReflection.ArgumentResolver in net.bytebuddy.build
Classes in net.bytebuddy.build that implement Plugin.Factory.UsingReflection.ArgumentResolver Modifier and Type Class Description static classPlugin.Factory.UsingReflection.ArgumentResolver.ForIndexAn argument resolver that resolves an argument for a specific parameter index.static classPlugin.Factory.UsingReflection.ArgumentResolver.ForIndex.WithDynamicTypeAn argument resolver that resolves an argument for a specific parameter index by attempting a conversion via invoking a staticvalueOfmethod on the target type, if it exists.static classPlugin.Factory.UsingReflection.ArgumentResolver.ForType<T>An argument resolver that resolves parameters for a given type.static classPlugin.Factory.UsingReflection.ArgumentResolver.NoOpAn argument resolver that never resolves an argument.Fields in net.bytebuddy.build with type parameters of type Plugin.Factory.UsingReflection.ArgumentResolver Modifier and Type Field Description private java.util.List<Plugin.Factory.UsingReflection.ArgumentResolver>Plugin.Factory.UsingReflection. argumentResolversA list of argument providers that can be used for instantiating the plugin.Methods in net.bytebuddy.build that return Plugin.Factory.UsingReflection.ArgumentResolver Modifier and Type Method Description static <S> Plugin.Factory.UsingReflection.ArgumentResolverPlugin.Factory.UsingReflection.ArgumentResolver.ForType. of(java.lang.Class<? extends S> type, S value)Creates an argument resolver for a given type.Methods in net.bytebuddy.build with parameters of type Plugin.Factory.UsingReflection.ArgumentResolver Modifier and Type Method Description Plugin.Factory.UsingReflectionPlugin.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.ArgumentResolver Modifier and Type Method Description Plugin.Factory.UsingReflectionPlugin.Factory.UsingReflection. with(java.util.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.ArgumentResolver Constructor Description UsingReflection(java.lang.Class<? extends Plugin> type, java.util.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.ArgumentResolver Modifier and Type Method Description Plugin.Factory.UsingReflection.ArgumentResolverPluginArgument. 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.ArgumentResolver Modifier and Type Method Description java.util.List<Plugin.Factory.UsingReflection.ArgumentResolver>Transformation. makeArgumentResolvers()Creates the argument resolvers for the plugin's constructor by transforming the plugin arguments.protected java.util.List<? extends Plugin.Factory.UsingReflection.ArgumentResolver>ByteBuddyMojo.Transformer.ForConfiguredPlugin. toArgumentResolvers()protected java.util.List<? extends Plugin.Factory.UsingReflection.ArgumentResolver>ByteBuddyMojo.Transformer.ForDiscoveredPlugin. toArgumentResolvers()protected abstract java.util.List<? extends Plugin.Factory.UsingReflection.ArgumentResolver>ByteBuddyMojo.Transformer. toArgumentResolvers()Returns the argument resolvers to use.
-