public enum ChangeKind extends Enum<ChangeKind>
Enum Constant and Description |
---|
MERGE_FIRST_PARENT_UPDATE
Conflict-free change of first (left) parent of a merge commit.
|
NO_CHANGE
Same tree, parent tree, same commit message.
|
NO_CODE_CHANGE
Same tree and same parent tree.
|
REWORK
Nontrivial content changes.
|
TRIVIAL_REBASE
Conflict-free merge between the new parent and the prior patch set.
|
Modifier and Type | Method and Description |
---|---|
static ChangeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeKind REWORK
public static final ChangeKind TRIVIAL_REBASE
public static final ChangeKind MERGE_FIRST_PARENT_UPDATE
public static final ChangeKind NO_CODE_CHANGE
public static final ChangeKind NO_CHANGE
public static ChangeKind[] values()
for (ChangeKind c : ChangeKind.values()) System.out.println(c);
public static ChangeKind 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