Package com.deltaxml.mergecommon.config
Enum Class ThreeToTwoResultPreset
- All Implemented Interfaces:
Serializable,Comparable<ThreeToTwoResultPreset>,Constable
A enumeration used to provide preset values to the three to two way merge cases such as all changes, their changes and conflicting changes.
The presets will define values of the
ThreeWayMergeResultType and RuleConfiguration settings.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThree to two way merge result will have all the possible changes represented in the output.This result will have only conflicting changes.This result will show the changes by other person or the changes on the other branch. -
Method Summary
Modifier and TypeMethodDescriptionstatic ThreeToTwoResultPresetReturns the enum constant of this class with the specified name.static ThreeToTwoResultPreset[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
ALL_CHANGES
Three to two way merge result will have all the possible changes represented in the output. -
CONFLICTING_CHANGES
This result will have only conflicting changes. -
THEIR_CHANGES
This result will show the changes by other person or the changes on the other branch.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-