public static enum GitConflictDescriptor.Type extends Enum<GitConflictDescriptor.Type>
Enum Constant and Description |
---|
ADDED_BY_THEM
Added by them
|
ADDED_BY_US
Added by us
|
BOTH_ADDED
Added in two branches simultaneously
|
BOTH_DELETED
Deleted in both branches.
|
BOTH_MODIFIED
Modified in two branches simultaneously
|
DELETED_BY_THEM
Modified but deleted in other branch
|
DELETED_BY_US
Deleted and modified in other branch
|
Modifier and Type | Method and Description |
---|---|
abstract String |
getDescription() |
static GitConflictDescriptor.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GitConflictDescriptor.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GitConflictDescriptor.Type BOTH_DELETED
public static final GitConflictDescriptor.Type ADDED_BY_US
public static final GitConflictDescriptor.Type DELETED_BY_THEM
public static final GitConflictDescriptor.Type ADDED_BY_THEM
public static final GitConflictDescriptor.Type DELETED_BY_US
public static final GitConflictDescriptor.Type BOTH_ADDED
public static final GitConflictDescriptor.Type BOTH_MODIFIED
public static GitConflictDescriptor.Type[] values()
public static GitConflictDescriptor.Type 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 String getDescription()