public static enum GitClient.CherryPickOperation extends Enum<GitClient.CherryPickOperation>
Enum Constant and Description |
---|
ABORT
Aborts and resets an interrupted cherry-pick command.
|
BEGIN
A fresh cherry-pick command will be started.
|
CONTINUE
Continues an interrupted cherry-pick command after conflicts are resolved.
|
QUIT
Tries to finish cherry-picking the current commit but stops in
cherry-picking other scheduled commits.
|
Modifier and Type | Method and Description |
---|---|
static GitClient.CherryPickOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GitClient.CherryPickOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GitClient.CherryPickOperation BEGIN
public static final GitClient.CherryPickOperation CONTINUE
public static final GitClient.CherryPickOperation QUIT
public static final GitClient.CherryPickOperation ABORT
public static GitClient.CherryPickOperation[] values()
public static GitClient.CherryPickOperation 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