public static enum SignerFactory.Type extends Enum<SignerFactory.Type>
| Enum Constant and Description |
|---|
PDF
A signer that provides PDF digital signatures.
|
PKCS7
A Signer that provides PKCS#7/CMS signatures.
|
XML
A signer that provides XML signatures.
|
| Modifier and Type | Method and Description |
|---|---|
static SignerFactory.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignerFactory.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignerFactory.Type PKCS7
public static final SignerFactory.Type PDF
public static final SignerFactory.Type XML
public static SignerFactory.Type[] values()
for (SignerFactory.Type c : SignerFactory.Type.values()) System.out.println(c);
public static SignerFactory.Type 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 nullCopyright © 2012-2014 Andrea Funtò. See here for terms and conditions.