Enum MergeMode

java.lang.Object
java.lang.Enum<MergeMode>
org.kie.internal.runtime.conf.MergeMode
All Implemented Interfaces:
Serializable, Comparable<MergeMode>, java.lang.constant.Constable

public enum MergeMode extends Enum<MergeMode>
Defines merging strategy of two descriptors
  • Enum Constant Details

    • KEEP_ALL

      public static final MergeMode KEEP_ALL
      The 'main' descriptor values are all kept
    • OVERRIDE_ALL

      public static final MergeMode OVERRIDE_ALL
      The 'secondary' descriptor values are all used
    • OVERRIDE_EMPTY

      public static final MergeMode OVERRIDE_EMPTY
      The 'secondary' non-empty values override corresponding values of the main, including collections
    • MERGE_COLLECTIONS

      public static final MergeMode MERGE_COLLECTIONS
      The same as OVERRIDE_EMPTY except that collections are merged instead of being overridden
  • Method Details

    • values

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

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