public static enum Issue.PriorityEnum extends java.lang.Enum<Issue.PriorityEnum>
| Enum Constant and Description |
|---|
BLOCKER |
CRITICAL |
MAJOR |
MINOR |
TRIVIAL |
| Modifier and Type | Method and Description |
|---|---|
static Issue.PriorityEnum |
fromValue(java.lang.String v) |
java.lang.String |
toString() |
java.lang.String |
value() |
static Issue.PriorityEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Issue.PriorityEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Issue.PriorityEnum TRIVIAL
public static final Issue.PriorityEnum MINOR
public static final Issue.PriorityEnum MAJOR
public static final Issue.PriorityEnum CRITICAL
public static final Issue.PriorityEnum BLOCKER
public static Issue.PriorityEnum[] values()
for (Issue.PriorityEnum c : Issue.PriorityEnum.values()) System.out.println(c);
public static Issue.PriorityEnum 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 value()
public java.lang.String toString()
toString in class java.lang.Enum<Issue.PriorityEnum>public static Issue.PriorityEnum fromValue(java.lang.String v)