Package com.pdftools.sign
Enum AddValidationInformation
- java.lang.Object
-
- java.lang.Enum<AddValidationInformation>
-
- com.pdftools.sign.AddValidationInformation
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AddValidationInformation>
public enum AddValidationInformation extends java.lang.Enum<AddValidationInformation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL
Add validation information to all existing signatures of input document.LATEST
Add validation information to latest existing signature of input document.NONE
Do not add validation information to any existing signatures of input document.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AddValidationInformation
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AddValidationInformation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final AddValidationInformation NONE
Do not add validation information to any existing signatures of input document.
-
LATEST
public static final AddValidationInformation LATEST
Add validation information to latest existing signature of input document.
-
ALL
public static final AddValidationInformation ALL
Add validation information to all existing signatures of input document.
-
-
Method Detail
-
values
public static AddValidationInformation[] 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 (AddValidationInformation c : AddValidationInformation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AddValidationInformation 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
-
-