@OpenApiAll public enum ChangeState extends java.lang.Enum<ChangeState>
Enum Constant and Description |
---|
ACCEPTED
Accepted change state.
|
EQUIVALENTLY_ACCEPTED
Equivalently accepted change state.
|
REJECTED
Rejected change state.
|
UNSPECIFIED
Unspecified change state
|
Modifier and Type | Method and Description |
---|---|
static ChangeState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangeState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeState UNSPECIFIED
public static final ChangeState ACCEPTED
public static final ChangeState EQUIVALENTLY_ACCEPTED
public static final ChangeState REJECTED
public static ChangeState[] values()
for (ChangeState c : ChangeState.values()) System.out.println(c);
public static ChangeState 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 null