Package org.apache.subversion.javahl
Class ConflictResult
java.lang.Object
org.apache.subversion.javahl.ConflictResult
public class ConflictResult extends Object
The result returned by the callback API used to handle conflicts
encountered during merge/update/switch operations. Includes a poor
man's enum for
svn_wc_conflict_choice_t
.-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ConflictResult.Choice
-
Constructor Summary
Constructors Constructor Description ConflictResult(ConflictResult.Choice choice, String mergedPath)
Create a new conflict result instance. -
Method Summary
Modifier and Type Method Description ConflictResult.Choice
getChoice()
String
getMergedPath()
-
Constructor Details
-
ConflictResult
Create a new conflict result instance.
-
-
Method Details
-
getChoice
- Returns:
- A value corresponding to the
svn_wc_conflict_choice_t
enum.
-
getMergedPath
- Returns:
- The path to the result of a merge, or
null
.
-