ReportT
data class ReportT(var configError: ReportT.ConfigError? = null, val contextError: ReportT.ContextError? = null, var pipelineError: ReportT.PipelineError? = null, var stageReports: ReportT.StageReports? = null, var scoreReports: ReportT.ScoreReports? = null)
Constructors
Link copied to clipboard
constructor(configError: ReportT.ConfigError? = null, contextError: ReportT.ContextError? = null, pipelineError: ReportT.PipelineError? = null, stageReports: ReportT.StageReports? = null, scoreReports: ReportT.ScoreReports? = null)
Types
Link copied to clipboard
data class ConfigError(var configFormatError: ErrorUnit.ConfigErrorUnit.ConfigFormatError? = null, var langFormatError: ErrorUnit.ConfigErrorUnit.LangFormatError? = null, var langUnsupportedError: ErrorUnit.ConfigErrorUnit.LangUnsupportedError? = null, var fieldUnsupportedError: List<ErrorUnit.ConfigErrorUnit.FieldUnsupportedError>? = null, var fieldsUndeclaredError: List<ErrorUnit.ConfigErrorUnit.FieldsUndeclaredError>? = null, var fieldsIncorrectlyUsedError: List<ErrorUnit.ConfigErrorUnit.FieldsIncorrectlyUsedError>? = null, var heredocDelimitingError: List<ErrorUnit.ConfigErrorUnit.HeredocDelimitingError>? = null) : ReportKind
Link copied to clipboard
data class ContextError(var fileNotFoundError: List<ErrorUnit.ContextErrorUnit.FileNotFoundError>? = null) : ReportKind
Link copied to clipboard
data class PipelineError(var nonFatalError: List<ErrorUnit.PipelineErrorUnit.NonFatalError>? = null, var fatalError: ErrorUnit.PipelineErrorUnit.FatalError? = null) : ReportKind
Link copied to clipboard
data class ScoreReports(val reports: List<ScoreReportUnit>, val accScore: Double, val accTotal: Double)
An aggregate class containing all ScoreReportUnit and the accumulated score and total.
Link copied to clipboard