com.teamscale.report.EDuplicateClassFileBehavior Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of report-generator Show documentation
Show all versions of report-generator Show documentation
Utilities for generating JaCoCo and Testwise Coverage reports
The newest version!
package com.teamscale.report;
/**
* Behavior when two non-identical class files with the same package name are found.
*/
public enum EDuplicateClassFileBehavior {
/** Completely ignores it. */
IGNORE,
/** Prints a warning to the logger. */
WARN,
/** Fails and stops further processing. */
FAIL
}