A
C
D
E
F
G
H
I
L
M
N
O
P
R
S
T
U
V
W
Y
P
- PackageRule - class in org.ossreviewtoolkit.evaluator
- A Rule to check a single Package.
- packageRule(java.lang.String,kotlin.jvm.functions.Function1) - function in org.ossreviewtoolkit.evaluator.RuleSet
- A DSL function to configure a PackageRule.
- PackageRule.LicenseRule - class in org.ossreviewtoolkit.evaluator.PackageRule
- A Rule to check a single license of the package.
- pkg() - function in org.ossreviewtoolkit.evaluator.PackageRule.LicenseRule
- A helper function to access PackageRule.pkg in extension functions for LicenseRule, required because the properties of the outer class PackageRule cannot be accessed from an extension function.
- projectSourceFindDirectories(java.lang.String) - function in org.ossreviewtoolkit.evaluator.ProjectSourceRule
- Return all directories from the project's source tree which match any of the provided glob expressions.
- projectSourceFindFiles(java.lang.String) - function in org.ossreviewtoolkit.evaluator.ProjectSourceRule
- Return all files from the project's source tree which match any of the provided glob expressions.
- projectSourceFindFilesWithContent(java.lang.String,java.lang.String) - function in org.ossreviewtoolkit.evaluator.ProjectSourceRule
- Return the file paths matching any of the given glob expressions with its file content matching contentPattern.
- projectSourceGetDetectedLicensesByFilePath(java.lang.String) - function in org.ossreviewtoolkit.evaluator.ProjectSourceRule
- Return the detected licenses for any file matching the given glob expressions.
- projectSourceGetVcsType() - function in org.ossreviewtoolkit.evaluator.ProjectSourceRule
- Return the VcsType of the project's code repository.
- projectSourceHasDirectory(java.lang.String) - function in org.ossreviewtoolkit.evaluator.ProjectSourceRule
- A RuleMatcher that checks whether the project's source tree contains at least one directory matching any of the provided glob expressions.
- projectSourceHasFile(java.lang.String) - function in org.ossreviewtoolkit.evaluator.ProjectSourceRule
- A RuleMatcher that checks whether the project's source tree contains at least one file matching any of the provided glob expressions.
- projectSourceHasFileWithContent(java.lang.String,java.lang.String) - function in org.ossreviewtoolkit.evaluator.ProjectSourceRule
- A RuleMatcher that checks whether the project's source tree contains at least one file matching any of the given glob expressions with its file content matching contentPattern.
- projectSourceHasVcsType(org.ossreviewtoolkit.model.VcsType) - function in org.ossreviewtoolkit.evaluator.ProjectSourceRule
- A RuleMatcher that checks whether the VcsType of the project's code repository is contained in the given vcsTypes.
- ProjectSourceRule - class in org.ossreviewtoolkit.evaluator
- An OrtResultRule which allows downloading the project's source code if needed.
- projectSourceRule(java.lang.String,kotlin.jvm.functions.Function1) - function in org.ossreviewtoolkit.evaluator.RuleSet
- A DSL function to configure an ProjectSourceRule.