public static enum GitMergeResult.MergeStatus extends Enum<GitMergeResult.MergeStatus>
Enum Constant and Description |
---|
ABORTED
Fast forward merge cannot be executed, a commit is needed.
|
ALREADY_UP_TO_DATE |
CONFLICTING |
FAILED |
FAST_FORWARD |
MERGED |
NOT_SUPPORTED |
Modifier and Type | Method and Description |
---|---|
static GitMergeResult.MergeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GitMergeResult.MergeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GitMergeResult.MergeStatus FAST_FORWARD
public static final GitMergeResult.MergeStatus ABORTED
public static final GitMergeResult.MergeStatus ALREADY_UP_TO_DATE
public static final GitMergeResult.MergeStatus FAILED
public static final GitMergeResult.MergeStatus MERGED
public static final GitMergeResult.MergeStatus CONFLICTING
public static final GitMergeResult.MergeStatus NOT_SUPPORTED
public static GitMergeResult.MergeStatus[] values()
public static GitMergeResult.MergeStatus 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 null