public static enum ResolveMerger.MergeFailureReason extends Enum<ResolveMerger.MergeFailureReason>
| Enum Constant and Description | 
|---|
COULD_NOT_DELETE
the merge failed because of a file could not be deleted 
 | 
DIRTY_INDEX
the merge failed because of a dirty index 
 | 
DIRTY_WORKTREE
the merge failed because of a dirty workingtree 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static ResolveMerger.MergeFailureReason | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static ResolveMerger.MergeFailureReason[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final ResolveMerger.MergeFailureReason DIRTY_INDEX
public static final ResolveMerger.MergeFailureReason DIRTY_WORKTREE
public static final ResolveMerger.MergeFailureReason COULD_NOT_DELETE
public static ResolveMerger.MergeFailureReason[] values()
for (ResolveMerger.MergeFailureReason c : ResolveMerger.MergeFailureReason.values()) System.out.println(c);
public static ResolveMerger.MergeFailureReason 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 © 2015 Eclipse JGit Project. All rights reserved.