Class LicenseFilePatterns
-
- All Implemented Interfaces:
public final class LicenseFilePatterns
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classLicenseFilePatterns.Companion
-
Field Summary
Fields Modifier and Type Field Description private final List<String>allLicenseFilenamesprivate final List<String>licenseFilenamesprivate final List<String>patentFilenamesprivate final List<String>rootLicenseFilenamespublic final static LicenseFilePatterns.CompanionCompanion
-
Method Summary
Modifier and Type Method Description final List<String>getAllLicenseFilenames()A list of globs that match all kind of license file names, equaling the union of licenseFilenames, patentFilenames and rootLicenseFilenames. final List<String>getLicenseFilenames()A list of globs that match default license file names. final List<String>getPatentFilenames()A list of globs that match default patent file names. final List<String>getRootLicenseFilenames()A list of globs that match files that often define the root license of a project, but are no license files and are therefore not contained in licenseFilenames. -
-
Method Detail
-
getAllLicenseFilenames
final List<String> getAllLicenseFilenames()
A list of globs that match all kind of license file names, equaling the union of licenseFilenames, patentFilenames and rootLicenseFilenames. The patterns are supposed to be used case-insensitively.
-
getLicenseFilenames
final List<String> getLicenseFilenames()
A list of globs that match default license file names. The patterns are supposed to be used case-insensitively.
-
getPatentFilenames
final List<String> getPatentFilenames()
A list of globs that match default patent file names. The patterns are supposed to be used case-insensitively.
-
getRootLicenseFilenames
final List<String> getRootLicenseFilenames()
A list of globs that match files that often define the root license of a project, but are no license files and are therefore not contained in licenseFilenames. The patterns are supposed to be used case-insensitively.
-
-
-
-