public static enum Constants.IssueState extends Enum<Constants.IssueState>
Modifier and Type | Method and Description |
---|---|
static Constants.IssueState |
forValue(String value) |
String |
toString() |
String |
toValue() |
static Constants.IssueState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants.IssueState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.IssueState OPENED
public static final Constants.IssueState CLOSED
public static final Constants.IssueState REOPENED
public static Constants.IssueState[] values()
for (Constants.IssueState c : Constants.IssueState.values()) System.out.println(c);
public static Constants.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 nullpublic static Constants.IssueState forValue(String value)
public String toValue()
public String toString()
toString
in class Enum<Constants.IssueState>
Copyright © 2019. All rights reserved.