public enum IssueStatus extends java.lang.Enum<IssueStatus> implements EnumConverter<IssueStatus>
| Enum Constant and Description |
|---|
RESOLVED |
UNRESOLVED |
| Modifier and Type | Method and Description |
|---|---|
static IssueStatus |
from(java.lang.String value) |
java.lang.Object |
to(IssueStatus v) |
static IssueStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IssueStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IssueStatus RESOLVED
public static final IssueStatus UNRESOLVED
public static IssueStatus[] values()
for (IssueStatus c : IssueStatus.values()) System.out.println(c);
public static IssueStatus 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 static IssueStatus from(java.lang.String value)
public java.lang.Object to(IssueStatus v)
to in interface EnumConverter<IssueStatus>