Enum MdpPermissions

java.lang.Object
java.lang.Enum<MdpPermissions>
com.pdftools.pdf.MdpPermissions
All Implemented Interfaces:
Serializable, Comparable<MdpPermissions>

public enum MdpPermissions extends Enum<MdpPermissions>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Permitted changes are the same as for FORM_FILLING, as well as annotation creation, deletion, and modification; other changes invalidate the signature.
    Permitted changes are filling in forms, instantiating page templates, and signing; other changes invalidate the signature.
    No changes to the document shall be permitted; any change to the document invalidates the signature.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this type with the specified name.
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • NO_CHANGES

      public static final MdpPermissions NO_CHANGES
      No changes to the document shall be permitted; any change to the document invalidates the signature.
    • FORM_FILLING

      public static final MdpPermissions FORM_FILLING
      Permitted changes are filling in forms, instantiating page templates, and signing; other changes invalidate the signature.
    • ANNOTATE

      public static final MdpPermissions ANNOTATE
      Permitted changes are the same as for FORM_FILLING, as well as annotation creation, deletion, and modification; other changes invalidate the signature.
  • Method Details

    • values

      public static MdpPermissions[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static MdpPermissions 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