public enum ProcessorPullState extends Enum<ProcessorPullState>
| Enum Constant and Description |
|---|
ERROR
The
MERGEABLE represents a state of a pull request which can be checked due to an error. |
FINISHED
The
FINISHED represents a state of a pull request which has been merged. |
INCOMPLETE
The
INCOMPLETE represents a state of a pull request which cannot be merged due to incompleteness of its description. |
MERGEABLE
The
MERGEABLE represents a state of a pull request which can be merged. |
NEW
The
NEW represents a state of a pull request which has not been reviewed yet. |
PENDING
The
PENDING represents a state of a pull request which has already been triggered to merge. |
RUNNING
The
RUNNING represents a state of a pull request which is currently being merged. |
| Modifier and Type | Method and Description |
|---|---|
static ProcessorPullState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProcessorPullState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessorPullState NEW
NEW represents a state of a pull request which has not been reviewed yet.public static final ProcessorPullState PENDING
PENDING represents a state of a pull request which has already been triggered to merge.public static final ProcessorPullState RUNNING
RUNNING represents a state of a pull request which is currently being merged.public static final ProcessorPullState MERGEABLE
MERGEABLE represents a state of a pull request which can be merged.public static final ProcessorPullState INCOMPLETE
INCOMPLETE represents a state of a pull request which cannot be merged due to incompleteness of its description.public static final ProcessorPullState FINISHED
FINISHED represents a state of a pull request which has been merged.public static final ProcessorPullState ERROR
MERGEABLE represents a state of a pull request which can be checked due to an error.public static ProcessorPullState[] values()
for (ProcessorPullState c : ProcessorPullState.values()) System.out.println(c);
public static ProcessorPullState 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 © 2015 JBoss by Red Hat. All rights reserved.