org.kohsuke.jnt
Enum IssueField

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

public enum IssueField
extends Enum<IssueField>

Author:
Kohsuke Kawaguchi

Enum Constant Summary
ASSIGNED
           
ATTACHMENT
          old value is null, and the new value is the description of the attachment.
BLOCKED_BY
           
CC
           
COMMENT
          It's not clear exactly when this happens, but I noticed this in https://jax-ws.dev.java.net/issues/xml.cgi?id=30 Most likely this is a bug in IssueZilla, and should be ignored by any applications.
COMMENT_INPUT
           
COMPONENT
          Same as COMMENT.
CONFIRMED
           
DEPENDS_ON
           
KEYWORDS
           
OS
           
PLATFORM
           
PRIORITY
           
QA_CONTACT
           
RESOLUTION
           
STATUS
           
STATUS_WHITEBOARD
           
SUBCOMPONENT
           
SUMMARY
           
TARGET_MILESTONE
           
TYPE
           
URL
           
VERSION
           
 
Field Summary
 String value
          Value as show up in the issue tracker XML <field_name> element.
 
Method Summary
static IssueField find(String value)
           
static IssueField valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IssueField[] 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

STATUS

public static final IssueField STATUS

SUBCOMPONENT

public static final IssueField SUBCOMPONENT

RESOLUTION

public static final IssueField RESOLUTION

TARGET_MILESTONE

public static final IssueField TARGET_MILESTONE

CC

public static final IssueField CC

URL

public static final IssueField URL

OS

public static final IssueField OS

PRIORITY

public static final IssueField PRIORITY

PLATFORM

public static final IssueField PLATFORM

SUMMARY

public static final IssueField SUMMARY

STATUS_WHITEBOARD

public static final IssueField STATUS_WHITEBOARD

VERSION

public static final IssueField VERSION

DEPENDS_ON

public static final IssueField DEPENDS_ON

BLOCKED_BY

public static final IssueField BLOCKED_BY

TYPE

public static final IssueField TYPE

ATTACHMENT

public static final IssueField ATTACHMENT
old value is null, and the new value is the description of the attachment.


ASSIGNED

public static final IssueField ASSIGNED

QA_CONTACT

public static final IssueField QA_CONTACT

KEYWORDS

public static final IssueField KEYWORDS

CONFIRMED

public static final IssueField CONFIRMED

COMMENT

public static final IssueField COMMENT
It's not clear exactly when this happens, but I noticed this in https://jax-ws.dev.java.net/issues/xml.cgi?id=30 Most likely this is a bug in IssueZilla, and should be ignored by any applications.


COMMENT_INPUT

public static final IssueField COMMENT_INPUT

COMPONENT

public static final IssueField COMPONENT
Same as COMMENT.

Field Detail

value

public final String value
Value as show up in the issue tracker XML <field_name> element.

Method Detail

values

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

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

valueOf

public static IssueField 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

find

public static IssueField find(String value)


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