net.sf.dynamicreports.jasper.constant
Enum PdfPermission

java.lang.Object
  extended by java.lang.Enum<PdfPermission>
      extended by 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)

Enum Constant Summary
ASSEMBLY
           
COPY
           
DEGRADED_PRINTING
           
FILL_IN
           
MODIFY_ANNOTATIONS
           
MODIFY_CONTENTS
           
PRINTING
           
SCREEN_READERS
           
 
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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.