public static enum GitCherryPickResult.CherryPickStatus extends Enum<GitCherryPickResult.CherryPickStatus>
Enum Constant and Description |
---|
ABORTED
Command was aborted and reset to the original state.
|
CONFLICTING
Conflicts when merging the cherry-picked commits.
|
FAILED
Failed because a dirty working tree prevents from starting the command.
|
OK
Command successfully finished.
|
UNCOMMITTED
The cherry-picking stopped in a state where it requires a manual commit.
|
Modifier and Type | Method and Description |
---|---|
static GitCherryPickResult.CherryPickStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GitCherryPickResult.CherryPickStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GitCherryPickResult.CherryPickStatus OK
public static final GitCherryPickResult.CherryPickStatus ABORTED
public static final GitCherryPickResult.CherryPickStatus FAILED
public static final GitCherryPickResult.CherryPickStatus UNCOMMITTED
public static final GitCherryPickResult.CherryPickStatus CONFLICTING
public static GitCherryPickResult.CherryPickStatus[] values()
public static GitCherryPickResult.CherryPickStatus 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