public enum PasswordEncryptionCompatability extends Enum<PasswordEncryptionCompatability>
This enumeration value is used when invoking the
PasswordEncryptionOptionSpec
object's
setCompatability()
method.
Enum Constant and Description |
---|
ACRO_3
Provides 40-bit encryption.
|
ACRO_5
Provide 128-bit encryption and also provide a finer granularity of control over what operations are permitted.
|
ACRO_6
Provide 128-bit encryption and also provide a finer granularity of control over what operations are permitted.
|
ACRO_7
Encrypts the document using the 128 bit Advanced Encryption Standard (AES).
|
ACRO_X
Encrypts the document using the 256 bit Advanced Encryption Standard (AES).
|
Modifier and Type | Method and Description |
---|---|
static PasswordEncryptionCompatability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PasswordEncryptionCompatability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PasswordEncryptionCompatability ACRO_3
public static final PasswordEncryptionCompatability ACRO_5
public static final PasswordEncryptionCompatability ACRO_6
public static final PasswordEncryptionCompatability ACRO_7
public static final PasswordEncryptionCompatability ACRO_X
public static PasswordEncryptionCompatability[] values()
for (PasswordEncryptionCompatability c : PasswordEncryptionCompatability.values()) System.out.println(c);
public static PasswordEncryptionCompatability 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.