public enum IssueAction extends java.lang.Enum<IssueAction>
Enum Constant and Description |
---|
ASSIGNED
the issue was assigned
|
BLOCKED
the issue is blocked on other issues
|
CLOSED
the issue was closed
|
COMMENTED
a comment was added to the log
|
FORWARDED
the issue was unassigned by the assignee
|
MESSAGE_SENT
a message was sent to or from the customer
|
OPENED
the issue was opened
|
REOPENED
the issue was reopened
|
RESOLVED
the issue was resolved
|
UNBLOCKED
the blocking issues were closed
|
UPDATED
the issue was updated
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription() |
java.lang.String |
getDisplayName() |
static IssueAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IssueAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IssueAction OPENED
public static final IssueAction REOPENED
public static final IssueAction ASSIGNED
public static final IssueAction FORWARDED
public static final IssueAction MESSAGE_SENT
public static final IssueAction COMMENTED
public static final IssueAction UPDATED
public static final IssueAction BLOCKED
public static final IssueAction UNBLOCKED
public static final IssueAction RESOLVED
public static final IssueAction CLOSED
public static IssueAction[] values()
for (IssueAction c : IssueAction.values()) System.out.println(c);
public static IssueAction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getDisplayName()
public java.lang.String getDescription()