public static enum SubmitRecord.Label.Status extends java.lang.Enum<SubmitRecord.Label.Status>
Enum Constant and Description |
---|
IMPOSSIBLE
The label is required for submission, but is impossible to complete.
|
MAY
The label may be set, but it's neither necessary for submission nor does it block
submission if set.
|
NEED
The label is required for submission, but has not been satisfied.
|
OK
This label provides what is necessary for submission.
|
REJECT
This label prevents the change from being submitted.
|
Modifier and Type | Method and Description |
---|---|
static SubmitRecord.Label.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SubmitRecord.Label.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubmitRecord.Label.Status OK
If provided, SubmitRecord.Label.appliedBy
describes the user account that applied this label
to the change.
public static final SubmitRecord.Label.Status REJECT
If provided, SubmitRecord.Label.appliedBy
describes the user account that applied this label
to the change.
public static final SubmitRecord.Label.Status NEED
public static final SubmitRecord.Label.Status MAY
public static final SubmitRecord.Label.Status IMPOSSIBLE
public static SubmitRecord.Label.Status[] values()
for (SubmitRecord.Label.Status c : SubmitRecord.Label.Status.values()) System.out.println(c);
public static SubmitRecord.Label.Status 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