Package net.bytebuddy.build
Class Plugin.Engine.Summary
- java.lang.Object
-
- net.bytebuddy.build.Plugin.Engine.Summary
-
- Enclosing interface:
- Plugin.Engine
public static class Plugin.Engine.Summary extends Object
A summary of the application of aPlugin.Engine
to a source and target.
-
-
Constructor Summary
Constructors Constructor Description Summary(List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)
Creates a new summary.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object other)
Map<TypeDescription,List<Throwable>>
getFailed()
Returns a mapping of all types that failed during transformation to the exceptions that explain the failure.List<TypeDescription>
getTransformed()
Returns a list of all types that were transformed.List<String>
getUnresolved()
Returns a list of type names that could not be resolved.int
hashCode()
-
-
-
Constructor Detail
-
Summary
public Summary(List<TypeDescription> transformed, Map<TypeDescription,List<Throwable>> failed, List<String> unresolved)
Creates a new summary.- Parameters:
transformed
- A list of all types that were transformed.failed
- A mapping of all types that failed during transformation to the exceptions that explain the failure.unresolved
- A list of type names that could not be resolved.
-
-
Method Detail
-
getTransformed
public List<TypeDescription> getTransformed()
Returns a list of all types that were transformed.- Returns:
- A list of all types that were transformed.
-
getFailed
public Map<TypeDescription,List<Throwable>> getFailed()
Returns a mapping of all types that failed during transformation to the exceptions that explain the failure.- Returns:
- A mapping of all types that failed during transformation to the exceptions that explain the failure.
-
getUnresolved
public List<String> getUnresolved()
Returns a list of type names that could not be resolved.- Returns:
- A list of type names that could not be resolved.
-
-