Enum Class ThreeToTwoResultPreset

java.lang.Object
java.lang.Enum<ThreeToTwoResultPreset>
com.deltaxml.mergecommon.config.ThreeToTwoResultPreset
All Implemented Interfaces:
Serializable, Comparable<ThreeToTwoResultPreset>, Constable

public enum ThreeToTwoResultPreset extends Enum<ThreeToTwoResultPreset>
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.
  • Enum Constant Details

    • ALL_CHANGES

      public static final ThreeToTwoResultPreset ALL_CHANGES
      Three to two way merge result will have all the possible changes represented in the output.
    • CONFLICTING_CHANGES

      public static final ThreeToTwoResultPreset CONFLICTING_CHANGES
      This result will have only conflicting changes.
    • THEIR_CHANGES

      public static final ThreeToTwoResultPreset THEIR_CHANGES
      This result will show the changes by other person or the changes on the other branch.
  • Method Details

    • values

      public static ThreeToTwoResultPreset[] 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

      public static ThreeToTwoResultPreset valueOf(String name)
      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 name
      NullPointerException - if the argument is null