net.sf.dynamicreports.jasper.constant
Enum PdfPermission
java.lang.Object
java.lang.Enum<PdfPermission>
net.sf.dynamicreports.jasper.constant.PdfPermission
- All Implemented Interfaces:
- Serializable, Comparable<PdfPermission>
public enum PdfPermission
- extends Enum<PdfPermission>
- Author:
- Ricardo Mariaca (r.mariaca@dynamicreports.org)
Method Summary |
static PdfPermission |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PdfPermission[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
PRINTING
public static final PdfPermission PRINTING
MODIFY_CONTENTS
public static final PdfPermission MODIFY_CONTENTS
COPY
public static final PdfPermission COPY
MODIFY_ANNOTATIONS
public static final PdfPermission MODIFY_ANNOTATIONS
FILL_IN
public static final PdfPermission FILL_IN
SCREEN_READERS
public static final PdfPermission SCREEN_READERS
ASSEMBLY
public static final PdfPermission ASSEMBLY
DEGRADED_PRINTING
public static final PdfPermission DEGRADED_PRINTING
values
public static PdfPermission[] 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 (PdfPermission c : PdfPermission.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PdfPermission valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2010-2014. All Rights Reserved.