Package org.sonar.api.ce.measure
Interface Issue
-
public interface Issue
Issue that can be used in aMeasureComputer
- Since:
- 5.2
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Duration
effort()
java.util.Map<SoftwareQuality,Severity>
impacts()
IssueStatus
issueStatus()
java.lang.String
key()
java.lang.String
resolution()
Deprecated.since 10.4 in favor ofissueStatus()
RuleKey
ruleKey()
java.lang.String
severity()
See constants inSeverity
.java.lang.String
status()
Deprecated.since 10.4 in favor ofissueStatus()
RuleType
type()
-
-
-
Method Detail
-
key
java.lang.String key()
-
ruleKey
RuleKey ruleKey()
-
status
@Deprecated(since="10.4") java.lang.String status()
Deprecated.since 10.4 in favor ofissueStatus()
Available list of status can be found inIssue.STATUSES
-
resolution
@CheckForNull @Deprecated(since="10.4") java.lang.String resolution()
Deprecated.since 10.4 in favor ofissueStatus()
Available list of resolutions can be found inIssue.RESOLUTIONS
-
issueStatus
IssueStatus issueStatus()
- Since:
- 10.4
Available list of status can be found in
IssueStatus.values()
-
severity
java.lang.String severity()
See constants inSeverity
.
-
effort
@CheckForNull Duration effort()
- Since:
- 5.5
-
type
RuleType type()
- Since:
- 5.5
-
impacts
java.util.Map<SoftwareQuality,Severity> impacts()
- Since:
- 10.1
-
-