Uses of Class
org.eclipse.jgit.merge.ResolveMerger.MergeFailureReason
-
Packages that use ResolveMerger.MergeFailureReason Package Description org.eclipse.jgit.api High-level API commands (the porcelain of JGit).org.eclipse.jgit.merge Content and commit history merge algorithms. -
-
Uses of ResolveMerger.MergeFailureReason in org.eclipse.jgit.api
Fields in org.eclipse.jgit.api with type parameters of type ResolveMerger.MergeFailureReason Modifier and Type Field Description private java.util.Map<java.lang.String,ResolveMerger.MergeFailureReason>
CherryPickResult. failingPaths
private java.util.Map<java.lang.String,ResolveMerger.MergeFailureReason>
MergeResult. failingPaths
private java.util.Map<java.lang.String,ResolveMerger.MergeFailureReason>
RebaseResult. failingPaths
Methods in org.eclipse.jgit.api that return types with arguments of type ResolveMerger.MergeFailureReason Modifier and Type Method Description java.util.Map<java.lang.String,ResolveMerger.MergeFailureReason>
CherryPickResult. getFailingPaths()
Get the list of paths causing this cherry-pick to failjava.util.Map<java.lang.String,ResolveMerger.MergeFailureReason>
MergeResult. getFailingPaths()
Returns a list of paths causing this merge to fail as returned byResolveMerger.getFailingPaths()
java.util.Map<java.lang.String,ResolveMerger.MergeFailureReason>
RebaseResult. getFailingPaths()
Get the list of paths causing this rebase to failMethod parameters in org.eclipse.jgit.api with type arguments of type ResolveMerger.MergeFailureReason Modifier and Type Method Description (package private) static RebaseResult
RebaseResult. failed(java.util.Map<java.lang.String,ResolveMerger.MergeFailureReason> failingPaths)
CreateRebaseResult
with statusRebaseResult.Status.FAILED
Constructor parameters in org.eclipse.jgit.api with type arguments of type ResolveMerger.MergeFailureReason Constructor Description CherryPickResult(java.util.Map<java.lang.String,ResolveMerger.MergeFailureReason> failingPaths)
Constructor for CherryPickResult -
Uses of ResolveMerger.MergeFailureReason in org.eclipse.jgit.merge
Fields in org.eclipse.jgit.merge with type parameters of type ResolveMerger.MergeFailureReason Modifier and Type Field Description protected java.util.Map<java.lang.String,ResolveMerger.MergeFailureReason>
ResolveMerger. failingPaths
Paths for which the merge failed altogether.Methods in org.eclipse.jgit.merge that return ResolveMerger.MergeFailureReason Modifier and Type Method Description static ResolveMerger.MergeFailureReason
ResolveMerger.MergeFailureReason. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ResolveMerger.MergeFailureReason[]
ResolveMerger.MergeFailureReason. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.eclipse.jgit.merge that return types with arguments of type ResolveMerger.MergeFailureReason Modifier and Type Method Description java.util.Map<java.lang.String,ResolveMerger.MergeFailureReason>
ResolveMerger. getFailingPaths()
Get list of paths causing this merge to fail (not stopped because of a conflict).
-