public static enum AutoMergeProcessingResult.AutoMergeProcessingStatus extends Enum<AutoMergeProcessingResult.AutoMergeProcessingStatus>
| Enum Constant and Description |
|---|
CANCELLED
The auto-merge request is cancelled by the system.
|
LOCK_FAILURE
The auto-merge request could not be processed as the auto-merge specific lock for the repository
could not be acquired in time.
|
MERGED
The pull request is successfully merged by the system.
|
STALE
The auto-merge request is ready to merge but its source or target branch does not reflect the latest
SCM state.
|
UNKNOWN
The status of the auto-merge request is not known.
|
VETOED
The auto-merge request is not yet ready to merge.
|
| Modifier and Type | Method and Description |
|---|---|
static AutoMergeProcessingResult.AutoMergeProcessingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoMergeProcessingResult.AutoMergeProcessingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoMergeProcessingResult.AutoMergeProcessingStatus CANCELLED
public static final AutoMergeProcessingResult.AutoMergeProcessingStatus VETOED
public static final AutoMergeProcessingResult.AutoMergeProcessingStatus STALE
public static final AutoMergeProcessingResult.AutoMergeProcessingStatus MERGED
public static final AutoMergeProcessingResult.AutoMergeProcessingStatus LOCK_FAILURE
public static final AutoMergeProcessingResult.AutoMergeProcessingStatus UNKNOWN
public static AutoMergeProcessingResult.AutoMergeProcessingStatus[] values()
for (AutoMergeProcessingResult.AutoMergeProcessingStatus c : AutoMergeProcessingResult.AutoMergeProcessingStatus.values()) System.out.println(c);
public static AutoMergeProcessingResult.AutoMergeProcessingStatus 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 © 2023 Atlassian. All rights reserved.