public static enum IssueView.IssueState extends Enum<IssueView.IssueState>
Enum Constant and Description |
---|
ISSUES_FOUND |
NONE_FOUND |
NOT_STARTED |
Modifier and Type | Method and Description |
---|---|
static IssueView.IssueState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IssueView.IssueState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IssueView.IssueState NOT_STARTED
public static final IssueView.IssueState NONE_FOUND
public static final IssueView.IssueState ISSUES_FOUND
public static IssueView.IssueState[] values()
for (IssueView.IssueState c : IssueView.IssueState.values()) System.out.println(c);
public static IssueView.IssueState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2017. All rights reserved.