Package org.sonar.api.issue
Enum IssueStatus
- java.lang.Object
- 
- java.lang.Enum<IssueStatus>
- 
- org.sonar.api.issue.IssueStatus
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<IssueStatus>
 
 public enum IssueStatus extends java.lang.Enum<IssueStatus> - Since:
- 10.4
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ACCEPTEDCONFIRMEDDeprecated.FALSE_POSITIVEFIXEDIN_SANDBOXOPEN
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static IssueStatusof(java.lang.String status, java.lang.String resolution)static IssueStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static IssueStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
OPENpublic static final IssueStatus OPEN 
 - 
CONFIRMED@Deprecated(since="10.4") public static final IssueStatus CONFIRMED Deprecated.
 - 
FALSE_POSITIVEpublic static final IssueStatus FALSE_POSITIVE 
 - 
ACCEPTEDpublic static final IssueStatus ACCEPTED 
 - 
FIXEDpublic static final IssueStatus FIXED 
 - 
IN_SANDBOXpublic static final IssueStatus IN_SANDBOX 
 
- 
 - 
Method Detail- 
valuespublic static IssueStatus[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (IssueStatus c : IssueStatus.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static IssueStatus valueOf(java.lang.String name) 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.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
of@CheckForNull public static IssueStatus of(@Nullable java.lang.String status, @Nullable java.lang.String resolution) 
 
- 
 
-