public enum MdpPermissions extends java.lang.Enum<MdpPermissions>
Enum Constant | Description |
---|---|
ANNOTATE |
Permitted changes are the same as for
FORM_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.
|
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.
|
public static final MdpPermissions NO_CHANGES
public static final MdpPermissions FORM_FILLING
public static final MdpPermissions ANNOTATE
FORM_FILLING
,
as well as annotation creation, deletion, and modification;
other changes invalidate the signature.public static MdpPermissions[] values()
for (MdpPermissions c : MdpPermissions.values()) System.out.println(c);
public static MdpPermissions valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null