public enum AddValidationInformation extends java.lang.Enum<AddValidationInformation>
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.
|
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.
|
public static final AddValidationInformation NONE
public static final AddValidationInformation LATEST
public static final AddValidationInformation ALL
public static AddValidationInformation[] values()
for (AddValidationInformation c : AddValidationInformation.values()) System.out.println(c);
public static AddValidationInformation 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