Enum Class ItemRemoveStrategy

java.lang.Object
java.lang.Enum<ItemRemoveStrategy>
io.jenkins.plugins.casc.core.ItemRemoveStrategy
All Implemented Interfaces:
Serializable, Comparable<ItemRemoveStrategy>, Constable

public enum ItemRemoveStrategy extends Enum<ItemRemoveStrategy>
  • Enum Constant Details

    • KEEP

      public static final ItemRemoveStrategy KEEP
      Do not remove any items that are not present in the configuration.
    • DELETE_TRACKED

      public static final ItemRemoveStrategy DELETE_TRACKED
      Remove items that are not present in the configuration if they were previously managed by Configuration as Code.
    • DELETE_ALL

      public static final ItemRemoveStrategy DELETE_ALL
      Remove all items that are not present in the configuration, regardless of whether they were previously managed by Configuration as Code.
  • Method Details

    • values

      public static ItemRemoveStrategy[] 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 ItemRemoveStrategy 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
    • getValue

      public String getValue()
    • fromString

      public static ItemRemoveStrategy fromString(String strategy)