Package org.ossreviewtoolkit.utils.ort
Class CopyrightStatementsProcessor.Result
-
- All Implemented Interfaces:
public final class CopyrightStatementsProcessor.Result
-
-
Field Summary
Fields Modifier and Type Field Description private final Set<String>allStatementsprivate final Map<String, Set<String>>processedStatementsprivate final Set<String>unprocessedStatements
-
Method Summary
Modifier and Type Method Description final Set<String>getAllStatements()final Map<String, Set<String>>getProcessedStatements()The copyright statements that were processed by the CopyrightStatementsProcessor, mapped to the original copyright statements. final Set<String>getUnprocessedStatements()The copyright statements that were ignored by the CopyrightStatementsProcessor. -
-
Method Detail
-
getAllStatements
final Set<String> getAllStatements()
-
getProcessedStatements
final Map<String, Set<String>> getProcessedStatements()
The copyright statements that were processed by the CopyrightStatementsProcessor, mapped to the original copyright statements. An original statement can be identical to the processed statement if the processor did process but not modify it.
-
getUnprocessedStatements
final Set<String> getUnprocessedStatements()
The copyright statements that were ignored by the CopyrightStatementsProcessor.
-
-
-
-