Enum SignatureRemoval

java.lang.Object
java.lang.Enum<SignatureRemoval>
com.pdftools.sign.SignatureRemoval
All Implemented Interfaces:
Serializable, Comparable<SignatureRemoval>

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

    • NONE

      public static final SignatureRemoval NONE
      Do not remove any signatures.
    • SIGNED

      public static final SignatureRemoval SIGNED

      Remove all signed signatures, but no unsigned signature fields. This lets you change the encryption parameters of signed input documents, e.g. to encrypt or decrypt them (see WarningCategory.SIGNED_DOC_ENCRYPTION_UNCHANGED).

      While the cryptographic parts of the signatures are removed, their visual appearances are preserved.

    • ALL

      public static final SignatureRemoval ALL
      Remove all signed (see SIGNED) and unsigned signature fields.
  • Method Details

    • values

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