| Package | Description |
|---|---|
| de.rwth.swc.coffee4j.engine.report |
| Modifier and Type | Method and Description |
|---|---|
static Report |
Report.report(String report,
Object... arguments) |
| Modifier and Type | Method and Description |
|---|---|
void |
Reporter.report(ReportLevel level,
Report report)
Reports the given
Report at the specified level. |
default void |
Reporter.reportDebug(Report report)
Calls
Reporter.report(ReportLevel, Report) with the level ReportLevel.DEBUG and the given report. |
default void |
Reporter.reportError(Report report)
Calls
Reporter.report(ReportLevel, Report) with the level ReportLevel.ERROR and the given report. |
default void |
Reporter.reportFatal(Report report)
Calls
Reporter.report(ReportLevel, Report) with the level ReportLevel.FATAL and the given report. |
default void |
Reporter.reportInfo(Report report)
Calls
Reporter.report(ReportLevel, Report) with the level ReportLevel.INFO and the given report. |
default void |
Reporter.reportTrace(Report report)
Calls
Reporter.report(ReportLevel, Report) with the level ReportLevel.TRACE and the given report. |
default void |
Reporter.reportWarn(Report report)
Calls
Reporter.report(ReportLevel, Report) with the level ReportLevel.WARN and the given report. |
| Modifier and Type | Method and Description |
|---|---|
void |
Reporter.report(ReportLevel level,
java.util.function.Supplier<Report> reportSupplier)
This method has the same intentions as
Reporter.report(ReportLevel, Report), but a supplier is given. |
default void |
Reporter.reportDebug(java.util.function.Supplier<Report> reportSupplier)
Calls
Reporter.report(ReportLevel, Supplier) with the level ReportLevel.DEBUG and the given supplier. |
default void |
Reporter.reportError(java.util.function.Supplier<Report> reportSupplier)
Calls
Reporter.report(ReportLevel, Supplier) with the level ReportLevel.ERROR and the given supplier. |
default void |
Reporter.reportFatal(java.util.function.Supplier<Report> reportSupplier)
Calls
Reporter.report(ReportLevel, Supplier) with the level ReportLevel.FATAL and the given supplier. |
default void |
Reporter.reportInfo(java.util.function.Supplier<Report> reportSupplier)
Calls
Reporter.report(ReportLevel, Supplier) with the level ReportLevel.INFO and the given supplier. |
default void |
Reporter.reportTrace(java.util.function.Supplier<Report> reportSupplier)
Calls
Reporter.report(ReportLevel, Supplier) with the level ReportLevel.TRACE and the given supplier. |
default void |
Reporter.reportWarn(java.util.function.Supplier<Report> reportSupplier)
Calls
Reporter.report(ReportLevel, Supplier) with the level ReportLevel.WARN and the given supplier. |
| Constructor and Description |
|---|
Report(Report report)
Copy constructor.
|
Copyright © 2019. All rights reserved.