Enum RuleViolationResolutionReason
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum RuleViolationResolutionReason extends Enum<RuleViolationResolutionReason>
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<RuleViolationResolutionReason>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description CANT_FIX_EXCEPTIONThe rule violation cannot be fixed and is acceptable in this case.
DYNAMIC_LINKAGE_EXCEPTIONThe rule violation is acceptable given the fact that the dependency it relates to is dynamically linked.
EXAMPLE_OF_EXCEPTIONThe rule violation is due to an inclusion of example code into a file and is acceptable in this case.
LICENSE_ACQUIRED_EXCEPTIONThe rule violation is acceptable because the license for the respective package has been acquired.
NOT_MODIFIED_EXCEPTIONThe rule violation is acceptable given the fact that the code it relates to has not been modified.
PATENT_GRANT_EXCEPTIONThe implied patent grant is acceptable in this case.
-
Method Summary
Modifier and Type Method Description final RuleViolationResolutionReasonvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<RuleViolationResolutionReason>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<RuleViolationResolutionReason>getEntries()-
-
Method Detail
-
valueOf
final RuleViolationResolutionReason 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<RuleViolationResolutionReason> 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<RuleViolationResolutionReason> getEntries()
-
-
-
-