|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IssueStatus>
org.kohsuke.jnt.IssueStatus
public enum IssueStatus
Status of an issue.
Enum Constant Summary | |
---|---|
CLOSED
The issue is considered dead, the resolution is correct. |
|
NEW
This issue has recently been added to the assignee's list of issues and must be processed. |
|
REOPENED
This issue was once resolved, but the resolution was deemed incorrect. |
|
RESOLVED
A resolution has been taken, and it is awaiting verification by QA. |
|
STARTED
This issue is not yet resolved, but is assigned to the proper person. |
|
UNCONFIRMED
This issue has recently been added to the database. |
|
VERIFIED
QA has looked at the issue and the resolution and agrees that the appropriate resolution has been taken. |
Field Summary | |
---|---|
boolean |
needsWork
True for UNCONFIRMED , NEW , STARTED ,
and REOPENED . |
Method Summary | |
---|---|
static IssueStatus |
valueOf(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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final IssueStatus UNCONFIRMED
public static final IssueStatus NEW
public static final IssueStatus STARTED
public static final IssueStatus REOPENED
public static final IssueStatus RESOLVED
public static final IssueStatus VERIFIED
public static final IssueStatus CLOSED
Field Detail |
---|
public final boolean needsWork
UNCONFIRMED
, NEW
, STARTED
,
and REOPENED
. This indicates that the issue needs to be
acted on by the developers.
False for other status, indicating that the issue needs to be
acted on by the user, or the work has been completed.
Method Detail |
---|
public static IssueStatus[] values()
for (IssueStatus c : IssueStatus.values()) System.out.println(c);
public static IssueStatus valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |