public static enum MergeChunk.ConflictState extends Enum<MergeChunk.ConflictState>
Enum Constant and Description |
---|
FIRST_CONFLICTING_RANGE
This chunk does belong to a conflict and is the first one of the
conflicting chunks
|
NEXT_CONFLICTING_RANGE
This chunk does belong to a conflict but is not the first one of the
conflicting chunks.
|
NO_CONFLICT
This chunk does not belong to a conflict
|
Modifier and Type | Method and Description |
---|---|
static MergeChunk.ConflictState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MergeChunk.ConflictState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MergeChunk.ConflictState NO_CONFLICT
public static final MergeChunk.ConflictState FIRST_CONFLICTING_RANGE
public static final MergeChunk.ConflictState NEXT_CONFLICTING_RANGE
public static MergeChunk.ConflictState[] values()
for (MergeChunk.ConflictState c : MergeChunk.ConflictState.values()) System.out.println(c);
public static MergeChunk.ConflictState 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 © 2016 Eclipse JGit Project. All rights reserved.