public enum PdfEditSecurity extends Enum<PdfEditSecurity>
Enum Constant and Description |
---|
EDIT_ALL
The user may edit the PDF as allowed by their PDF client software.
|
EDIT_PAGES
The user may re-arrange pages, rotate pages and manage PDF thumbnails, but may not otherwise
edit the PDF unless they have the Owner password.
|
NO_EDIT
The user may not edit the PDF unless they have the Owner password.
|
Modifier and Type | Method and Description |
---|---|
static PdfEditSecurity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PdfEditSecurity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PdfEditSecurity NO_EDIT
public static final PdfEditSecurity EDIT_PAGES
public static final PdfEditSecurity EDIT_ALL
public static PdfEditSecurity[] values()
for (PdfEditSecurity c : PdfEditSecurity.values()) System.out.println(c);
public static PdfEditSecurity 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 © 2022–2023 Iron Software. All rights reserved.