Enum Class DiscardPolicy

java.lang.Object
java.lang.Enum<DiscardPolicy>
org.jboss.as.controller.transform.description.DiscardPolicy
All Implemented Interfaces:
Serializable, Comparable<DiscardPolicy>, Constable

public enum DiscardPolicy extends Enum<DiscardPolicy>
Policy defining whether resource or operation transformations should be rejected.
Author:
Emanuel Muckenhuber
  • Enum Constant Details

    • NEVER

      public static final DiscardPolicy NEVER
      Don't discard the resource or operation.
    • REJECT_AND_WARN

      public static final DiscardPolicy REJECT_AND_WARN
      Reject operations and only warn for resource transformations.
    • DISCARD_AND_WARN

      public static final DiscardPolicy DISCARD_AND_WARN
      Discard operations silently, but warn for resource transformations.
    • SILENT

      public static final DiscardPolicy SILENT
      Discard silently.
  • Method Details

    • values

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