Enum DocAssuranceServiceOperationTypes
- java.lang.Object
-
- java.lang.Enum<DocAssuranceServiceOperationTypes>
-
- com.adobe.fd.docassurance.client.api.DocAssuranceServiceOperationTypes
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DocAssuranceServiceOperationTypes>
public enum DocAssuranceServiceOperationTypes extends java.lang.Enum<DocAssuranceServiceOperationTypes>
DocAssurance Service Option to be defined inEncryptionOptionsandSignatureOptions. Choose the appropriate option for signing, certifying, encrypting with password or certificate.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CERTIFYCertify a PDF DocumentENCRYPT_WITH_CERTIFCATEEncrypt PDF Document with CertificateENCRYPT_WITH_PASSWORDEncrypt PDF Document with PasswordSIGNSign a PDF Document
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DocAssuranceServiceOperationTypesvalueOf(java.lang.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.
-
-
-
Enum Constant Detail
-
SIGN
public static final DocAssuranceServiceOperationTypes SIGN
Sign a PDF Document
-
CERTIFY
public static final DocAssuranceServiceOperationTypes CERTIFY
Certify a PDF Document
-
ENCRYPT_WITH_PASSWORD
public static final DocAssuranceServiceOperationTypes ENCRYPT_WITH_PASSWORD
Encrypt PDF Document with Password
-
ENCRYPT_WITH_CERTIFCATE
public static final DocAssuranceServiceOperationTypes ENCRYPT_WITH_CERTIFCATE
Encrypt PDF Document with Certificate
-
-
Method Detail
-
values
public static DocAssuranceServiceOperationTypes[] 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 (DocAssuranceServiceOperationTypes c : DocAssuranceServiceOperationTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DocAssuranceServiceOperationTypes 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
-
-