public enum SignatureFormat extends java.lang.Enum<SignatureFormat>
Enum Constant | Description |
---|---|
ADBE_PKCS7_DETACHED |
Legacy PAdES Basic signature (PDF 1.6)
|
ETSI_CADES_DETACHED |
PAdES signature (PDF 2.0)
|
Modifier and Type | Method | Description |
---|---|---|
static SignatureFormat |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SignatureFormat[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignatureFormat ADBE_PKCS7_DETACHED
public static final SignatureFormat ETSI_CADES_DETACHED
public static SignatureFormat[] values()
for (SignatureFormat c : SignatureFormat.values()) System.out.println(c);
public static SignatureFormat 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