Serializable
, Comparable<RebaseCommand.Operation>
public static enum RebaseCommand.Operation extends Enum<RebaseCommand.Operation>
Enum Constant | Description |
---|---|
ABORT |
Aborts and resets the current rebase
|
BEGIN |
Initiates rebase
|
CONTINUE |
Continues after a conflict resolution
|
PROCESS_STEPS |
Starts processing steps
|
SKIP |
Skips the "current" commit
|
Modifier and Type | Method | Description |
---|---|---|
static RebaseCommand.Operation |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static RebaseCommand.Operation[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RebaseCommand.Operation BEGIN
public static final RebaseCommand.Operation CONTINUE
public static final RebaseCommand.Operation SKIP
public static final RebaseCommand.Operation ABORT
public static final RebaseCommand.Operation PROCESS_STEPS
public static RebaseCommand.Operation[] values()
for (RebaseCommand.Operation c : RebaseCommand.Operation.values()) System.out.println(c);
public static RebaseCommand.Operation 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 nullCopyright © 2018. All rights reserved.