|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IssueResolution>
org.kohsuke.jnt.IssueResolution
public enum IssueResolution
Resolution of an issue.
Enum Constant Summary | |
---|---|
DUPLICATE
The problem is a duplicate of an existing issue. |
|
FIXED
A fix for this issue is checked into the source code repository and tested. |
|
INVALID
The problem described is not an issue. |
|
LATER
The problem described is an issue which will not be fixed in this version of the product. |
|
REMIND
The problem described is an issue which will probably not be fixed in this version of the product, but might still be. |
|
WONTFIX
The problem described is an issue which will never be fixed. |
|
WORKSFORME
All attempts at reproducing this issue were futile, reading the code produces no clues as to why this behavior would occur. |
Method Summary | |
---|---|
static IssueResolution |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IssueResolution[] |
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 IssueResolution FIXED
public static final IssueResolution INVALID
public static final IssueResolution WONTFIX
public static final IssueResolution LATER
public static final IssueResolution REMIND
public static final IssueResolution DUPLICATE
public static final IssueResolution WORKSFORME
Method Detail |
---|
public static IssueResolution[] values()
for (IssueResolution c : IssueResolution.values()) System.out.println(c);
public static IssueResolution 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 |