public static enum SigningInfo.SignerType extends Enum<SigningInfo.SignerType>
| Enum Constant and Description |
|---|
CERT
The signer is a certificate.
|
ID
The signer is an identity.
|
KEY
The signer is a key.
|
NULL
No signer is specified.
|
SHA256
Use a SHA-256 digest.
|
| Modifier and Type | Method and Description |
|---|---|
static SigningInfo.SignerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SigningInfo.SignerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SigningInfo.SignerType NULL
public static final SigningInfo.SignerType ID
public static final SigningInfo.SignerType KEY
public static final SigningInfo.SignerType CERT
public static final SigningInfo.SignerType SHA256
public static SigningInfo.SignerType[] values()
for (SigningInfo.SignerType c : SigningInfo.SignerType.values()) System.out.println(c);
public static SigningInfo.SignerType 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 © 2019. All rights reserved.