public enum ErrorCodes extends java.lang.Enum<ErrorCodes>
Modifier and Type | Method and Description |
---|---|
static ErrorCodes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ErrorCodes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorCodes EntityNotFound
public static final ErrorCodes EntityAlreadyExists
public static final ErrorCodes EntityUnusable
public static final ErrorCodes EntityIsReadOnly
public static final ErrorCodes SecurityContextRequired
public static final ErrorCodes PKCertificateMalformed
public static final ErrorCodes ValidationError
public static final ErrorCodes ClientSignatureNotSet
public static final ErrorCodes ClientSignatureAlreadySet
public static final ErrorCodes ToSignHashNotAvailable
public static final ErrorCodes CertificateMismatch
public static final ErrorCodes InvalidRequest
public static final ErrorCodes TimestampingUnavailable
public static final ErrorCodes EndUserCertificate
public static final ErrorCodes CACertificate
public static final ErrorCodes SelfSignedCertificate
public static final ErrorCodes TimestampPlanRequired
public static final ErrorCodes StorageUnavailable
public static final ErrorCodes InvalidPdf
public static final ErrorCodes InvalidVisualRepresentation
public static final ErrorCodes SignaturePolicyRequired
public static final ErrorCodes MissingDataHash
public static final ErrorCodes CannotApplyPdfMarks
public static final ErrorCodes BadDigest
public static final ErrorCodes InvalidXml
public static ErrorCodes[] values()
for (ErrorCodes c : ErrorCodes.values()) System.out.println(c);
public static ErrorCodes 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