Enum DiscardPolicy

    • Enum Constant Detail

      • 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 Detail

      • values

        public static DiscardPolicy[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DiscardPolicy c : DiscardPolicy.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

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