Uses of Interface
net.bytebuddy.build.Plugin.Engine.Source
-
Packages that use Plugin.Engine.Source 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.Engine.Source in net.bytebuddy.build
Classes in net.bytebuddy.build that implement Plugin.Engine.Source Modifier and Type Class Description static classPlugin.Engine.Source.EmptyAn empty source that does not contain any elements or a manifest.static classPlugin.Engine.Source.FilteringA source that applies a filter upon iterating elements.static classPlugin.Engine.Source.ForFolderRepresents the contents of a folder as class files.static classPlugin.Engine.Source.ForJarFileRepresents a jar file as a source.static classPlugin.Engine.Source.InMemoryA source that represents a collection of in-memory resources that are represented as byte arrays.Fields in net.bytebuddy.build declared as Plugin.Engine.Source Modifier and Type Field Description private Plugin.Engine.SourcePlugin.Engine.Source.Filtering. delegateThe source to which invocations are delegated.Methods in net.bytebuddy.build that return Plugin.Engine.Source Modifier and Type Method Description static Plugin.Engine.SourcePlugin.Engine.Source.InMemory. ofTypes(java.lang.Class<?>... type)Represents a collection of types as a in-memory source.static Plugin.Engine.SourcePlugin.Engine.Source.InMemory. ofTypes(java.util.Collection<? extends java.lang.Class<?>> types)Represents a collection of types as a in-memory source.static Plugin.Engine.SourcePlugin.Engine.Source.InMemory. ofTypes(java.util.Map<TypeDescription,byte[]> binaryRepresentations)Represents a map of type names to their binary representation as an in-memory source.Methods in net.bytebuddy.build with parameters of type Plugin.Engine.Source Modifier and Type Method Description Plugin.Engine.SummaryPlugin.Engine.AbstractBase. apply(Plugin.Engine.Source source, Plugin.Engine.Target target, Plugin.Factory... factory)Applies this plugin engine onto a given source and target.Plugin.Engine.SummaryPlugin.Engine. apply(Plugin.Engine.Source source, Plugin.Engine.Target target, java.util.List<? extends Plugin.Factory> factories)Applies this plugin engine onto a given source and target.Plugin.Engine.SummaryPlugin.Engine. apply(Plugin.Engine.Source source, Plugin.Engine.Target target, Plugin.Factory... factory)Applies this plugin engine onto a given source and target.Plugin.Engine.SummaryPlugin.Engine.Default. apply(Plugin.Engine.Source source, Plugin.Engine.Target target, java.util.List<? extends Plugin.Factory> factories)Applies this plugin engine onto a given source and target.Constructors in net.bytebuddy.build with parameters of type Plugin.Engine.Source Constructor Description Filtering(Plugin.Engine.Source delegate, ElementMatcher<Plugin.Engine.Source.Element> matcher)Creates a new filtering source that retains the manifest of the delegated source.Filtering(Plugin.Engine.Source delegate, ElementMatcher<Plugin.Engine.Source.Element> matcher, boolean manifest)Creates a new filtering source. -
Uses of Plugin.Engine.Source in net.bytebuddy.build.maven
Methods in net.bytebuddy.build.maven with parameters of type Plugin.Engine.Source Modifier and Type Method Description private Plugin.Engine.SummaryByteBuddyMojo. apply(java.io.File root, java.util.List<? extends java.lang.String> classPath, java.util.List<ByteBuddyMojo.Transformer> transformers, Plugin.Engine.Source source)Applies the instrumentation.
-