public enum DocAssuranceServiceOperationTypes extends Enum<DocAssuranceServiceOperationTypes>
EncryptionOptions and SignatureOptions.
Choose the appropriate option for signing, certifying, encrypting with password or certificate.| Enum Constant and Description |
|---|
CERTIFY
Certify a PDF Document
|
ENCRYPT_WITH_CERTIFCATE
Encrypt PDF Document with Certificate
|
ENCRYPT_WITH_PASSWORD
Encrypt PDF Document with Password
|
SIGN
Sign a PDF Document
|
| Modifier and Type | Method and Description |
|---|---|
static DocAssuranceServiceOperationTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocAssuranceServiceOperationTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocAssuranceServiceOperationTypes SIGN
public static final DocAssuranceServiceOperationTypes CERTIFY
public static final DocAssuranceServiceOperationTypes ENCRYPT_WITH_PASSWORD
public static final DocAssuranceServiceOperationTypes ENCRYPT_WITH_CERTIFCATE
public static DocAssuranceServiceOperationTypes[] values()
for (DocAssuranceServiceOperationTypes c : DocAssuranceServiceOperationTypes.values()) System.out.println(c);
public static DocAssuranceServiceOperationTypes valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 1982–2023 Adobe Systems Incorporated. All rights reserved.