public enum PasswordEncryptionPermission extends Enum<PasswordEncryptionPermission>
Enum Constant and Description |
---|
PASSWORD_ALL_PERM
Represents all permissions.
|
PASSWORD_EDIT_ADD
Represents the permission that enables users to add form data.
|
PASSWORD_EDIT_ASSEMBLE
Represents the permission that enables users to assemble PDF documents.
|
PASSWORD_EDIT_COPY
Represents the permission that enables users to copy form data.
|
PASSWORD_EDIT_EXTRACT
Represents the permission that enables users to extract pages from the PDF document.
|
PASSWORD_EDIT_FORM_FILL
Represents the permission that enables users to fill in forms.
|
PASSWORD_EDIT_MODIFY
Represents the permission that enables the users to edit the PDF document.
|
PASSWORD_PRINT_HIGH
Allows high-resolution printing of documents.
|
PASSWORD_PRINT_LOW
Allows low-resolution printing of documents.
|
PASSWORD_PRINT_NONE
Does not allow printing of documents.
|
Modifier and Type | Method and Description |
---|---|
static PasswordEncryptionPermission |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PasswordEncryptionPermission[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PasswordEncryptionPermission PASSWORD_ALL_PERM
public static final PasswordEncryptionPermission PASSWORD_EDIT_ADD
public static final PasswordEncryptionPermission PASSWORD_EDIT_COPY
public static final PasswordEncryptionPermission PASSWORD_EDIT_ASSEMBLE
public static final PasswordEncryptionPermission PASSWORD_EDIT_EXTRACT
public static final PasswordEncryptionPermission PASSWORD_EDIT_FORM_FILL
public static final PasswordEncryptionPermission PASSWORD_EDIT_MODIFY
public static final PasswordEncryptionPermission PASSWORD_PRINT_HIGH
PASSWORD_PRINT_HIGH
and PASSWORD_PRINT_LOW
values.public static final PasswordEncryptionPermission PASSWORD_PRINT_LOW
public static final PasswordEncryptionPermission PASSWORD_PRINT_NONE
public static PasswordEncryptionPermission[] values()
for (PasswordEncryptionPermission c : PasswordEncryptionPermission.values()) System.out.println(c);
public static PasswordEncryptionPermission 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.