com.atlassian.jira.webtest.selenium.framework.model
Enum SystemField

java.lang.Object
  extended by java.lang.Enum<SystemField>
      extended by com.atlassian.jira.webtest.selenium.framework.model.SystemField
All Implemented Interfaces:
Serializable, Comparable<SystemField>

public enum SystemField
extends Enum<SystemField>

Enumeration of JIRA system fields.

Since:
v4.2

Enum Constant Summary
AFFECTED_VERSIONS
           
ASSIGNEE
           
COMMENT
           
COMPONENTS
           
CREATED
           
DESCRIPTION
           
DUE_DATE
           
ENVIRONMENT
           
FIX_VERSIONS
           
ISSUE_TYPE
           
LABELS
           
LOG_WORK
           
PRIORITY
           
PROJECT
           
REPORTER
           
RESOLUTION
           
RESOLUTION_DATE
           
SECURITY
           
STATUS
           
SUMMARY
           
TIMETRACKING
           
UPDATED
           
 
Method Summary
 String id()
           
 String label()
           
 Option option()
           
static SystemField valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SystemField[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PROJECT

public static final SystemField PROJECT

AFFECTED_VERSIONS

public static final SystemField AFFECTED_VERSIONS

ASSIGNEE

public static final SystemField ASSIGNEE

COMPONENTS

public static final SystemField COMPONENTS

COMMENT

public static final SystemField COMMENT

DESCRIPTION

public static final SystemField DESCRIPTION

DUE_DATE

public static final SystemField DUE_DATE

ENVIRONMENT

public static final SystemField ENVIRONMENT

FIX_VERSIONS

public static final SystemField FIX_VERSIONS

ISSUE_TYPE

public static final SystemField ISSUE_TYPE

PRIORITY

public static final SystemField PRIORITY

REPORTER

public static final SystemField REPORTER

SECURITY

public static final SystemField SECURITY

SUMMARY

public static final SystemField SUMMARY

TIMETRACKING

public static final SystemField TIMETRACKING

CREATED

public static final SystemField CREATED

UPDATED

public static final SystemField UPDATED

RESOLUTION_DATE

public static final SystemField RESOLUTION_DATE

STATUS

public static final SystemField STATUS

RESOLUTION

public static final SystemField RESOLUTION

LABELS

public static final SystemField LABELS

LOG_WORK

public static final SystemField LOG_WORK
Method Detail

values

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

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

valueOf

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

id

public String id()

label

public String label()

option

public Option option()


Copyright © 2002-2012 Atlassian. All Rights Reserved.