Package com.pdftools.signaturevalidation
Enum Indication
- All Implemented Interfaces:
Serializable,Comparable<Indication>
Main status indication of the signature validation process
See ETSI TS 102 853 and ETSI EN 319 102-1.-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe available information is insufficient to determine whether the signature is valid or invalid.The constraint is invalid according to the chosen signature validation profile.The constraint is valid according to the chosen signature validation profile. -
Method Summary
Modifier and TypeMethodDescriptionstatic IndicationReturns the enum constant of this type with the specified name.static Indication[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
VALID
The constraint is valid according to the chosen signature validation profile.
-
INVALID
The constraint is invalid according to the chosen signature validation profile.
-
INDETERMINATE
The available information is insufficient to determine whether the signature is valid or invalid.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-