Package com.pd4ml.pdf.sign
Enum SigningOptions.CertificationLevel
- java.lang.Object
-
- java.lang.Enum<SigningOptions.CertificationLevel>
-
- com.pd4ml.pdf.sign.SigningOptions.CertificationLevel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SigningOptions.CertificationLevel>
- Enclosing class:
- SigningOptions
public static enum SigningOptions.CertificationLevel extends java.lang.Enum<SigningOptions.CertificationLevel>
Mirrors PDF's /DocMDP transform: how much further editing is permitted after this signature.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FORM_FILLING_ALLOWEDFORM_FILLING_AND_ANNOTATIONS_ALLOWEDNO_CHANGES_ALLOWEDNOT_CERTIFIED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SigningOptions.CertificationLevelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SigningOptions.CertificationLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_CERTIFIED
public static final SigningOptions.CertificationLevel NOT_CERTIFIED
-
NO_CHANGES_ALLOWED
public static final SigningOptions.CertificationLevel NO_CHANGES_ALLOWED
-
FORM_FILLING_ALLOWED
public static final SigningOptions.CertificationLevel FORM_FILLING_ALLOWED
-
FORM_FILLING_AND_ANNOTATIONS_ALLOWED
public static final SigningOptions.CertificationLevel FORM_FILLING_AND_ANNOTATIONS_ALLOWED
-
-
Method Detail
-
values
public static SigningOptions.CertificationLevel[] 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 (SigningOptions.CertificationLevel c : SigningOptions.CertificationLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SigningOptions.CertificationLevel 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
-
-