|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<IssueField>
org.kohsuke.jnt.IssueField
public enum IssueField
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 clearly 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. |
|
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 |
---|
public static final IssueField STATUS
public static final IssueField SUBCOMPONENT
public static final IssueField RESOLUTION
public static final IssueField TARGET_MILESTONE
public static final IssueField CC
public static final IssueField URL
public static final IssueField OS
public static final IssueField PRIORITY
public static final IssueField PLATFORM
public static final IssueField SUMMARY
public static final IssueField STATUS_WHITEBOARD
public static final IssueField VERSION
public static final IssueField DEPENDS_ON
public static final IssueField BLOCKED_BY
public static final IssueField TYPE
public static final IssueField ATTACHMENT
public static final IssueField ASSIGNED
public static final IssueField QA_CONTACT
public static final IssueField KEYWORDS
public static final IssueField CONFIRMED
public static final IssueField COMMENT
public static final IssueField COMPONENT
COMMENT
.
Field Detail |
---|
public final String value
Method Detail |
---|
public static IssueField[] values()
for (IssueField c : IssueField.values()) System.out.println(c);
public static IssueField 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 nullpublic static IssueField find(String value)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |