public static enum NoMergeBaseException.MergeBaseFailureReason extends Enum<NoMergeBaseException.MergeBaseFailureReason>
Enum Constant and Description |
---|
CONFLICTS_DURING_MERGE_BASE_CALCULATION
In order to find a single merge base it may required to merge
together multiple common predecessors.
|
MULTIPLE_MERGE_BASES_NOT_SUPPORTED
Multiple merge bases have been found (e.g.
|
TOO_MANY_MERGE_BASES
The number of merge bases exceeds
RecursiveMerger.MAX_BASES |
Modifier and Type | Method and Description |
---|---|
static NoMergeBaseException.MergeBaseFailureReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NoMergeBaseException.MergeBaseFailureReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NoMergeBaseException.MergeBaseFailureReason MULTIPLE_MERGE_BASES_NOT_SUPPORTED
public static final NoMergeBaseException.MergeBaseFailureReason TOO_MANY_MERGE_BASES
RecursiveMerger.MAX_BASES
public static final NoMergeBaseException.MergeBaseFailureReason CONFLICTS_DURING_MERGE_BASE_CALCULATION
public static NoMergeBaseException.MergeBaseFailureReason[] values()
for (NoMergeBaseException.MergeBaseFailureReason c : NoMergeBaseException.MergeBaseFailureReason.values()) System.out.println(c);
public static NoMergeBaseException.MergeBaseFailureReason 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 © 2013. All rights reserved.