public enum DocMDPAccessPermissions extends Enum<DocMDPAccessPermissions>
The access permissions granted for this document. Valid values are: 1 - No changes to the document are permitted; any change to the document invalidates the signature. 2 - Permitted changes are filling in forms, instantiating page templates, and signing; other changes invalidate the signature. 3 - Permitted changes are the same as for 2, as well as annotation creation, deletion, and modification; other changes invalidate the signature.
Enum Constant and Description |
---|
AnnotationModification
3 - Permitted changes are the same as for 2, as well as annotation creation, deletion, and
modification; other changes invalidate the signature.
|
FillingInForms
2 - Permitted changes are filling in forms, instantiating page templates, and signing; other
changes invalidate the signature.
|
NoChanges
1 - No changes to the document are permitted; any change to the document invalidates the
signature.
|
Modifier and Type | Method and Description |
---|---|
static DocMDPAccessPermissions |
getByValue(int value) |
int |
getValue() |
static DocMDPAccessPermissions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocMDPAccessPermissions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocMDPAccessPermissions NoChanges
1 - No changes to the document are permitted; any change to the document invalidates the signature.
public static final DocMDPAccessPermissions FillingInForms
2 - Permitted changes are filling in forms, instantiating page templates, and signing; other changes invalidate the signature.
public static final DocMDPAccessPermissions AnnotationModification
3 - Permitted changes are the same as for 2, as well as annotation creation, deletion, and modification; other changes invalidate the signature.
public static DocMDPAccessPermissions[] values()
for (DocMDPAccessPermissions c : DocMDPAccessPermissions.values()) System.out.println(c);
public static DocMDPAccessPermissions valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
public static DocMDPAccessPermissions getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.