org.kohsuke.jnt
Enum IssueResolution

java.lang.Object
  extended by java.lang.Enum<IssueResolution>
      extended by org.kohsuke.jnt.IssueResolution
All Implemented Interfaces:
Serializable, Comparable<IssueResolution>

public enum IssueResolution
extends Enum<IssueResolution>

Resolution of an issue.

Author:
Kohsuke Kawaguchi

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

FIXED

public static final IssueResolution FIXED
A fix for this issue is checked into the source code repository and tested.


INVALID

public static final IssueResolution INVALID
The problem described is not an issue.


WONTFIX

public static final IssueResolution WONTFIX
The problem described is an issue which will never be fixed.


LATER

public static final IssueResolution LATER
The problem described is an issue which will not be fixed in this version of the product.


REMIND

public static final IssueResolution REMIND
The problem described is an issue which will probably not be fixed in this version of the product, but might still be.


DUPLICATE

public static final IssueResolution DUPLICATE
The problem is a duplicate of an existing issue. Marking an issue duplicate requires the issue number of the duplicating issue and will at least put that issue number in the description field.


WORKSFORME

public static final IssueResolution WORKSFORME
All attempts at reproducing this issue were futile, reading the code produces no clues as to why this behavior would occur. If more information appears later, please re-assign the issue, for now, file it.

Method Detail

values

public static IssueResolution[] 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 (IssueResolution c : IssueResolution.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static IssueResolution valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2003-2008 Kohsuke Kawaguchi. All Rights Reserved.