|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RebaseResult.Status>
org.eclipse.jgit.api.RebaseResult.Status
public static enum RebaseResult.Status
The overall status
Enum Constant Summary | |
---|---|
ABORTED
Aborted; the original HEAD was restored |
|
CONFLICTS
Conflicts: checkout of target HEAD failed |
|
FAILED
Failed; the original HEAD was restored |
|
FAST_FORWARD
Fast-forward, HEAD points to the new commit |
|
NOTHING_TO_COMMIT
Continue with nothing left to commit (possibly want skip). |
|
OK
Rebase was successful, HEAD points to the new commit |
|
STOPPED
Stopped due to a conflict; must either abort or resolve or skip |
|
UP_TO_DATE
Already up-to-date |
Method Summary | |
---|---|
abstract boolean |
isSuccessful()
|
static RebaseResult.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RebaseResult.Status[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RebaseResult.Status OK
public static final RebaseResult.Status ABORTED
public static final RebaseResult.Status STOPPED
public static final RebaseResult.Status FAILED
public static final RebaseResult.Status CONFLICTS
public static final RebaseResult.Status UP_TO_DATE
public static final RebaseResult.Status FAST_FORWARD
public static final RebaseResult.Status NOTHING_TO_COMMIT
Method Detail |
---|
public static RebaseResult.Status[] values()
for (RebaseResult.Status c : RebaseResult.Status.values()) System.out.println(c);
public static RebaseResult.Status valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic abstract boolean isSuccessful()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |