Package com.pdftools.pdf
Enum MdpPermissions
- java.lang.Object
-
- java.lang.Enum<MdpPermissions>
-
- com.pdftools.pdf.MdpPermissions
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<MdpPermissions>
public enum MdpPermissions extends java.lang.Enum<MdpPermissions>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNOTATE
Permitted changes are the same as forFORM_FILLING
, as well as annotation creation, deletion, and modification; other changes invalidate the signature.FORM_FILLING
Permitted changes are filling in forms, instantiating page templates, and signing; other changes invalidate the signature.NO_CHANGES
No changes to the document shall be permitted; any change to the document invalidates the signature.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MdpPermissions
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static MdpPermissions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
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 forFORM_FILLING
, as well as annotation creation, deletion, and modification; other changes invalidate the signature.
-
-
Method Detail
-
values
public static MdpPermissions[] 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 (MdpPermissions c : MdpPermissions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MdpPermissions valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-