Enum IssueResolutionReason
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum IssueResolutionReason extends Enum<IssueResolutionReason>
Possible reasons for resolving an Issue using a IssueResolution.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<IssueResolutionReason>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description BUILD_TOOL_ISSUEThe issue originates from the build tool used by the project.
CANT_FIX_ISSUEThe issue can not be fixed, e.g. because it requires a change to be made by a third party that is not responsive.
SCANNER_ISSUEThe issue is due to an irrelevant scanner issue, such as time out on a large file that is not distributed.
-
Method Summary
Modifier and Type Method Description final IssueResolutionReasonvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<IssueResolutionReason>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<IssueResolutionReason>getEntries()Possible reasons for resolving an Issue using a IssueResolution. -
-
Method Detail
-
valueOf
final IssueResolutionReason 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<IssueResolutionReason> 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<IssueResolutionReason> getEntries()
Possible reasons for resolving an Issue using a IssueResolution.
-
-
-
-