public static enum GitRebaseResult.RebaseStatus extends Enum<GitRebaseResult.RebaseStatus>
Enum Constant and Description |
---|
ABORTED
Rebase was aborted and reset to the original state.
|
CONFLICTS
Conflicts when checking out the target HEAD.
|
FAILED
Failed and reset to the original state.
|
FAST_FORWARD
Fast-forward, HEAD points to the new commit.
|
NOTHING_TO_COMMIT
Continue with nothing left to commit.
|
OK
Rebase successfully finished.
|
STOPPED
Stopped due to a conflict.
|
UP_TO_DATE
Already up-to-date.
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
isSuccessful() |
static GitRebaseResult.RebaseStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GitRebaseResult.RebaseStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GitRebaseResult.RebaseStatus OK
public static final GitRebaseResult.RebaseStatus ABORTED
public static final GitRebaseResult.RebaseStatus STOPPED
public static final GitRebaseResult.RebaseStatus FAILED
public static final GitRebaseResult.RebaseStatus CONFLICTS
public static final GitRebaseResult.RebaseStatus UP_TO_DATE
public static final GitRebaseResult.RebaseStatus FAST_FORWARD
public static final GitRebaseResult.RebaseStatus NOTHING_TO_COMMIT
public static GitRebaseResult.RebaseStatus[] values()
public static GitRebaseResult.RebaseStatus 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 nullpublic abstract boolean isSuccessful()