public static enum MergeResult.MergeStatus extends java.lang.Enum<MergeResult.MergeStatus>
Enum Constant and Description |
---|
ALREADY_UP_TO_DATE |
CONFLICTING |
FAILED |
FAST_FORWARD |
MERGED |
NOT_SUPPORTED |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
isSuccessful() |
static MergeResult.MergeStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MergeResult.MergeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeResult.MergeStatus FAST_FORWARD
public static final MergeResult.MergeStatus ALREADY_UP_TO_DATE
public static final MergeResult.MergeStatus FAILED
public static final MergeResult.MergeStatus MERGED
public static final MergeResult.MergeStatus CONFLICTING
public static final MergeResult.MergeStatus NOT_SUPPORTED
public static MergeResult.MergeStatus[] values()
for (MergeResult.MergeStatus c : MergeResult.MergeStatus.values()) System.out.println(c);
public static MergeResult.MergeStatus 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 nullpublic abstract boolean isSuccessful()
Copyright © 2012. All Rights Reserved.