Enum Class ThreeWayMerge.TwoWayResultFormat

java.lang.Object
java.lang.Enum<ThreeWayMerge.TwoWayResultFormat>
com.deltaxml.ditamerge.ThreeWayMerge.TwoWayResultFormat
All Implemented Interfaces:
Serializable, Comparable<ThreeWayMerge.TwoWayResultFormat>, Constable
Enclosing class:
ThreeWayMerge

public static enum ThreeWayMerge.TwoWayResultFormat extends Enum<ThreeWayMerge.TwoWayResultFormat>
  • Enum Constant Details

    • XML_DELTA

      public static final ThreeWayMerge.TwoWayResultFormat XML_DELTA
      This result format produces either a deltaV2 result or a simplified delta result. These formats are XML files with additional elements and attributes used to describe the changes. These formats are described in detail in the product documentation.
    • OXYGEN_TRACK_CHANGES

      public static final ThreeWayMerge.TwoWayResultFormat OXYGEN_TRACK_CHANGES
      This result format is an XML file with processing instructions used in the accept/reject interface of the oXygen XML editor/author. This interface is also used by the editors track-change system. The format relies on XML Processing Instructions to describe the changes.
    • DITA_MARKUP

      public static final ThreeWayMerge.TwoWayResultFormat DITA_MARKUP
      This result format is a DITA document are marked up using DITA specific scheme. The DITA Markup output format uses rev and status attributes to identify change. These attributes can be added to many DITA elements. The rev attribute can take any value and the status attribute can take one of the following values: 'changed', 'new', 'deleted', 'unchanged'.
  • Method Details

    • values

      public static ThreeWayMerge.TwoWayResultFormat[] 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 ThreeWayMerge.TwoWayResultFormat 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