Package com.pdftools.sign
Enum SignatureRemoval
- java.lang.Object
-
- java.lang.Enum<SignatureRemoval>
-
- com.pdftools.sign.SignatureRemoval
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SignatureRemoval>
public enum SignatureRemoval extends java.lang.Enum<SignatureRemoval>
-
-
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.
-
-
-
Enum Constant Detail
-
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 (seeSIGNED
) and unsigned signature fields.
-
-
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 namejava.lang.NullPointerException
- if the argument is null
-
-