public enum CertificateEncryptionCompatibility extends Enum<CertificateEncryptionCompatibility>
ACRO_6
ACRO_7
ACRO_9
Enum Constant and Description |
---|
ACRO_6
Provides 128-bit encryption and also provides a finer granularity of control over what operations are permitted.
|
ACRO_7
Encrypts the document using 128 bit keysize Advanced Encryption Standard (AES).
|
ACRO_9
Encrypts the document using the 256 bit keysize Advanced Encryption Standard (AES).
|
Modifier and Type | Method and Description |
---|---|
static CertificateEncryptionCompatibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertificateEncryptionCompatibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificateEncryptionCompatibility ACRO_6
public static final CertificateEncryptionCompatibility ACRO_7
public static final CertificateEncryptionCompatibility ACRO_9
public static CertificateEncryptionCompatibility[] values()
for (CertificateEncryptionCompatibility c : CertificateEncryptionCompatibility.values()) System.out.println(c);
public static CertificateEncryptionCompatibility 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–2022 Adobe Systems Inc.. All rights reserved.