public enum SignatureType extends Enum<SignatureType>
| Enum Constant and Description |
|---|
EDOC_V1
EDOC_V1 signature type.
|
EDOC_V2
EDOC_V2 signature type.
|
PDF_ADBE_PKCS7_DETACHED
PDF Adobe PKCS7 detached signature type.
|
PDF_ETSI_CADES_DETACHED
PDF ETSI CAdES detached signature type.
|
UNKNOWN_TYPE
Unknown signature type.
|
| Modifier and Type | Method and Description |
|---|---|
static SignatureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignatureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignatureType UNKNOWN_TYPE
public static final SignatureType EDOC_V1
public static final SignatureType EDOC_V2
public static final SignatureType PDF_ADBE_PKCS7_DETACHED
public static final SignatureType PDF_ETSI_CADES_DETACHED
public static SignatureType[] values()
for (SignatureType c : SignatureType.values()) System.out.println(c);
public static SignatureType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null