Enum LicenseFindingCurationReason
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum LicenseFindingCurationReason extends Enum<LicenseFindingCurationReason>
Possible reasons for a license finding curation.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<LicenseFindingCurationReason>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description CODEThe findings occur in source code, for example the name of a variable.
DATA_OFThe findings occur in a data, for example a JSON object defining all SPDX licenses.
DOCUMENTATION_OFThe findings occur in documentation, for example in code comments or in the README.md.
INCORRECTThe detected licenses are not correct. Use only if none of the other reasons apply.
NOT_DETECTEDAdd applicable license as the scanner did not detect it.
REFERENCEThe findings reference a file or URL, e.g. SEE LICENSE IN LICENSE or https://jquery.org/license/.
-
Method Summary
Modifier and Type Method Description final LicenseFindingCurationReasonvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<LicenseFindingCurationReason>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<LicenseFindingCurationReason>getEntries()Possible reasons for a license finding curation. -
-
Method Detail
-
valueOf
final LicenseFindingCurationReason valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<LicenseFindingCurationReason> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<LicenseFindingCurationReason> getEntries()
Possible reasons for a license finding curation.
-
-
-
-