Enum SignatureRemoval

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<SignatureRemoval>

    public enum SignatureRemoval
    extends java.lang.Enum<SignatureRemoval>
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      ALL
      Remove all signed (see SIGNED) and unsigned signature fields.
      NONE
      Do not remove any signatures.
      SIGNED
      Remove all signed signatures, but no unsigned signature fields.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static SignatureRemoval valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static SignatureRemoval[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

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

    • Method Detail

      • values

        public static SignatureRemoval[] 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 (SignatureRemoval c : SignatureRemoval.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SignatureRemoval valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null