Interface SanitationResult
public interface SanitationResult
Result of the input sanitation.
The result consists of the inputs that were sanitized to the greatest extent possible and of the collection of issues that were found. Note that the sanitized data may be invalid even after the sanitation if further sanitation is impossible without manual intervention.
- Author:
- Daniel Danis
-
Method Summary
-
Method Details
-
sanitizedInputs
SanitizedInputs sanitizedInputs()- Returns:
- the inputs sanitized to the greatest extent possible.
-
issues
Collection<SanityIssue> issues()- Returns:
- a collection with sanity issues found in the input data.
-
hasErrorOrWarnings
default boolean hasErrorOrWarnings()- Returns:
true
if there is at least one issue in the analysis inputs.
-
hasErrors
default boolean hasErrors()- Returns:
true
if there is at least one serious issue/error in the analysis inputs.
-