public static enum ScmPlugin.MergeResult extends Enum<ScmPlugin.MergeResult>
| Enum Constant and Description |
|---|
CONFLICTS
Conflicts occurred during the merge.
|
MERGED
The merge completed successfully (destination was updated with new changes in
source).
|
NOTHING_TO_MERGE
There was nothing to merge (destination already contains source).
|
| Modifier and Type | Method and Description |
|---|---|
static ScmPlugin.MergeResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScmPlugin.MergeResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScmPlugin.MergeResult MERGED
Also applicable when destination is replaced with source (source was different from destination).
public static final ScmPlugin.MergeResult CONFLICTS
public static final ScmPlugin.MergeResult NOTHING_TO_MERGE
Also applicable when destination is replaced with source (source and destination were the same).
public static ScmPlugin.MergeResult[] values()
for (ScmPlugin.MergeResult c : ScmPlugin.MergeResult.values()) System.out.println(c);
public static ScmPlugin.MergeResult 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–2017 AZYVA INC.. All rights reserved.