Package org.tmatesoft.svn.core
Class SVNMergeInfoInheritance
- java.lang.Object
-
- org.tmatesoft.svn.core.SVNMergeInfoInheritance
-
public class SVNMergeInfoInheritance extends java.lang.ObjectThis class contains enumeration that describes the ways of requesting merge information.- Since:
- 1.2
- Version:
- 1.3
- Author:
- TMate Software Ltd.
-
-
Field Summary
Fields Modifier and Type Field Description static SVNMergeInfoInheritanceEXPLICITRepresents the way of requesting the explicit merge information for the element.static SVNMergeInfoInheritanceINHERITEDRepresents the way of requesting the explicit merge information for the element, if exists, otherwise inherited merge information from the nearest ancestor of the element.static SVNMergeInfoInheritanceNEAREST_ANCESTORRepresents the way of requesting the merge information from the element's nearest ancestor, regardless of whether the element has explicit info.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()Returns a string representation of this object.
-
-
-
Field Detail
-
EXPLICIT
public static final SVNMergeInfoInheritance EXPLICIT
Represents the way of requesting the explicit merge information for the element.
-
INHERITED
public static final SVNMergeInfoInheritance INHERITED
Represents the way of requesting the explicit merge information for the element, if exists, otherwise inherited merge information from the nearest ancestor of the element.
-
NEAREST_ANCESTOR
public static final SVNMergeInfoInheritance NEAREST_ANCESTOR
Represents the way of requesting the merge information from the element's nearest ancestor, regardless of whether the element has explicit info.
-
-