com.atlassian.jira.functest.framework.admin
Enum DefaultIssueEvents

java.lang.Object
  extended by java.lang.Enum<DefaultIssueEvents>
      extended by com.atlassian.jira.functest.framework.admin.DefaultIssueEvents
All Implemented Interfaces:
Serializable, Comparable<DefaultIssueEvents>

public enum DefaultIssueEvents
extends Enum<DefaultIssueEvents>

Enumeration of default issue events.

Since:
4.4

Enum Constant Summary
ISSUE_ASSIGNED
           
ISSUE_CREATED
           
ISSUE_DELETED
           
ISSUE_RESOLVED
           
ISSUE_UPDATED
           
 
Method Summary
 int eventId()
           
static DefaultIssueEvents valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DefaultIssueEvents[] 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

ISSUE_CREATED

public static final DefaultIssueEvents ISSUE_CREATED

ISSUE_UPDATED

public static final DefaultIssueEvents ISSUE_UPDATED

ISSUE_ASSIGNED

public static final DefaultIssueEvents ISSUE_ASSIGNED

ISSUE_RESOLVED

public static final DefaultIssueEvents ISSUE_RESOLVED

ISSUE_DELETED

public static final DefaultIssueEvents ISSUE_DELETED
Method Detail

values

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

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

valueOf

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

eventId

public int eventId()


Copyright © 2002-2013 Atlassian. All Rights Reserved.