Package com.pdftools.sign
Enum SignatureRemoval
- All Implemented Interfaces:
Serializable,Comparable<SignatureRemoval>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic SignatureRemovalReturns 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.
-
Enum Constant Details
-
NONE
Do not remove any signatures. -
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
Remove all signed (seeSIGNED) and unsigned signature fields.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-