Package org.ossreviewtoolkit.model
Class EvaluatorRun
-
- All Implemented Interfaces:
public final class EvaluatorRunThe summary of a single run of the evaluator.
-
-
Field Summary
Fields Modifier and Type Field Description public final static EvaluatorRunEMPTYprivate final InstantstartTimeprivate final InstantendTimeprivate final List<RuleViolation>violations
-
Constructor Summary
Constructors Constructor Description EvaluatorRun(Instant startTime, Instant endTime, List<RuleViolation> violations)
-
Method Summary
Modifier and Type Method Description final InstantgetStartTime()The Instant the evaluator was started. final InstantgetEndTime()The Instant the evaluator has finished. final List<RuleViolation>getViolations()The list of RuleViolations found by the evaluator. -
-
Constructor Detail
-
EvaluatorRun
EvaluatorRun(Instant startTime, Instant endTime, List<RuleViolation> violations)
-
-
Method Detail
-
getStartTime
final Instant getStartTime()
The Instant the evaluator was started.
-
getEndTime
final Instant getEndTime()
The Instant the evaluator has finished.
-
getViolations
final List<RuleViolation> getViolations()
The list of RuleViolations found by the evaluator.
-
-
-
-