public static enum Constants.TodoAction extends java.lang.Enum<Constants.TodoAction>
Enum Constant and Description |
---|
APPROVAL_REQUIRED |
ASSIGNED |
BUILD_FAILED |
DIRECTLY_ADDRESSED |
MARKED |
MENTIONED |
UNMERGEABLE |
Modifier and Type | Method and Description |
---|---|
static Constants.TodoAction |
forValue(java.lang.String value) |
java.lang.String |
toString() |
java.lang.String |
toValue() |
static Constants.TodoAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.TodoAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.TodoAction ASSIGNED
public static final Constants.TodoAction MENTIONED
public static final Constants.TodoAction BUILD_FAILED
public static final Constants.TodoAction MARKED
public static final Constants.TodoAction APPROVAL_REQUIRED
public static final Constants.TodoAction UNMERGEABLE
public static final Constants.TodoAction DIRECTLY_ADDRESSED
public static Constants.TodoAction[] values()
for (Constants.TodoAction c : Constants.TodoAction.values()) System.out.println(c);
public static Constants.TodoAction 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 Constants.TodoAction forValue(java.lang.String value)
public java.lang.String toValue()
public java.lang.String toString()
toString
in class java.lang.Enum<Constants.TodoAction>