Enum Class RunModeOptimization

java.lang.Object
java.lang.Enum<RunModeOptimization>
io.wcm.devops.conga.plugins.aem.maven.RunModeOptimization
All Implemented Interfaces:
Serializable, Comparable<RunModeOptimization>, Constable

public enum RunModeOptimization extends Enum<RunModeOptimization>
How to optimize author/publish run modes in resulting "all" package.
  • Enum Constant Details

    • OFF

      public static final RunModeOptimization OFF
      No optimization takes place. Content packages and bundles are duplicated for author/publish run modes to ensure strict following of dependency chain defined in CONGA.
    • ELIMINATE_DUPLICATES

      public static final RunModeOptimization ELIMINATE_DUPLICATES
      Eliminates duplicates to ensure that content packages and bundles that are installed on both author and publish instances are contained only once in the "all" package.
  • Method Details

    • values

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