public enum SignaturePermissions extends Enum<SignaturePermissions>
Enum Constant and Description |
---|
FormFillingAllowed
Changing form field values is allowed
|
FormFillingAndAnnotationsAllowed
Changing form field values and modifying annotations are allowed
|
NoChangesAllowed
No changes are allowed
|
Modifier and Type | Method and Description |
---|---|
static SignaturePermissions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignaturePermissions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignaturePermissions NoChangesAllowed
public static final SignaturePermissions FormFillingAllowed
public static final SignaturePermissions FormFillingAndAnnotationsAllowed
public static SignaturePermissions[] values()
for (SignaturePermissions c : SignaturePermissions.values()) System.out.println(c);
public static SignaturePermissions 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 nullCopyright © 2022–2023 Iron Software. All rights reserved.