Package org.apache.subversion.javahl
Enum SVNUtil.ConflictDisplayStyle
java.lang.Object
java.lang.Enum<SVNUtil.ConflictDisplayStyle>
org.apache.subversion.javahl.SVNUtil.ConflictDisplayStyle
- All Implemented Interfaces:
Serializable
,Comparable<SVNUtil.ConflictDisplayStyle>
,java.lang.constant.Constable
- Enclosing class:
- SVNUtil
public static enum SVNUtil.ConflictDisplayStyle extends Enum<SVNUtil.ConflictDisplayStyle>
Style for displaying conflicts in merge output.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description latest
Just display latest, with no markers.modified
Just display modified, with no markers.modified_latest
Display modified and latest, with conflict markers.modified_original_latest
Display modified, original, and latest, with conflict markers.only_conflicts
Likemodified_original_latest
, but only showing conflicts.resolved_modified_latest
Likemodified_latest
, but with an extra effort to identify common sequences between modified and latest. -
Method Summary
Modifier and Type Method Description static SVNUtil.ConflictDisplayStyle
valueOf(String name)
Returns the enum constant of this type with the specified name.static SVNUtil.ConflictDisplayStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
modified_latest
Display modified and latest, with conflict markers. -
resolved_modified_latest
Likemodified_latest
, but with an extra effort to identify common sequences between modified and latest. -
modified_original_latest
Display modified, original, and latest, with conflict markers. -
modified
Just display modified, with no markers. -
latest
Just display latest, with no markers. -
only_conflicts
Likemodified_original_latest
, but only showing conflicts.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-