Uses of Interface
net.bytebuddy.build.BuildLogger
-
Packages that use BuildLogger 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 BuildLogger in net.bytebuddy.build
Classes in net.bytebuddy.build that implement BuildLogger Modifier and Type Class Description static class
BuildLogger.Adapter
An abstract adapter implementation for a build logger.static class
BuildLogger.Compound
A compound build logger.static class
BuildLogger.NoOp
A non-operational build logger that discards all statements.static class
BuildLogger.StreamWriting
A build logger that writes all statements to aPrintStream
.Fields in net.bytebuddy.build with type parameters of type BuildLogger Modifier and Type Field Description private java.util.List<BuildLogger>
BuildLogger.Compound. buildLoggers
The build loggers to delegate to.Methods in net.bytebuddy.build that return BuildLogger Modifier and Type Method Description static BuildLogger
BuildLogger.StreamWriting. toSystemError()
Creates a build logger that writes toSystem.err
.static BuildLogger
BuildLogger.StreamWriting. toSystemOut()
Creates a build logger that writes toSystem.out
.Constructors in net.bytebuddy.build with parameters of type BuildLogger Constructor Description Compound(BuildLogger... buildLogger)
Creates a new compound build logger.Constructor parameters in net.bytebuddy.build with type arguments of type BuildLogger Constructor Description Compound(java.util.List<? extends BuildLogger> buildLoggers)
Creates a new compound build logger. -
Uses of BuildLogger in net.bytebuddy.build.maven
Classes in net.bytebuddy.build.maven that implement BuildLogger Modifier and Type Class Description protected static class
ByteBuddyMojo.MavenBuildLogger
ABuildLogger
implementation for a MavenLog
.
-