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 java.lang.Object
A summary of the application of aPlugin.Engine
to a source and target.
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<TypeDescription,java.util.List<java.lang.Throwable>>
failed
A mapping of all types that failed during transformation to the exceptions that explain the failure.private java.util.List<TypeDescription>
transformed
A list of all types that were transformed.private java.util.List<java.lang.String>
unresolved
A list of type names that could not be resolved.
-
Constructor Summary
Constructors Constructor Description Summary(java.util.List<TypeDescription> transformed, java.util.Map<TypeDescription,java.util.List<java.lang.Throwable>> failed, java.util.List<java.lang.String> unresolved)
Creates a new summary.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object other)
java.util.Map<TypeDescription,java.util.List<java.lang.Throwable>>
getFailed()
Returns a mapping of all types that failed during transformation to the exceptions that explain the failure.java.util.List<TypeDescription>
getTransformed()
Returns a list of all types that were transformed.java.util.List<java.lang.String>
getUnresolved()
Returns a list of type names that could not be resolved.int
hashCode()
-
-
-
Field Detail
-
transformed
private final java.util.List<TypeDescription> transformed
A list of all types that were transformed.
-
failed
private final java.util.Map<TypeDescription,java.util.List<java.lang.Throwable>> failed
A mapping of all types that failed during transformation to the exceptions that explain the failure.
-
unresolved
private final java.util.List<java.lang.String> unresolved
A list of type names that could not be resolved.
-
-
Constructor Detail
-
Summary
public Summary(java.util.List<TypeDescription> transformed, java.util.Map<TypeDescription,java.util.List<java.lang.Throwable>> failed, java.util.List<java.lang.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 java.util.List<TypeDescription> getTransformed()
Returns a list of all types that were transformed.- Returns:
- A list of all types that were transformed.
-
getFailed
public java.util.Map<TypeDescription,java.util.List<java.lang.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 java.util.List<java.lang.String> getUnresolved()
Returns a list of type names that could not be resolved.- Returns:
- A list of type names that could not be resolved.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
-