public enum TrustError extends Enum<TrustError>
| Enum Constant and Description |
|---|
MissingRecipientCertificate |
MissingSenderCertificate |
MissingSenderSignature |
NoTrustedRecipients |
SignatureValidation |
Unexpected |
UnknownRecipient |
UntrustedMessage |
UntrustedSender |
| Modifier and Type | Method and Description |
|---|---|
static TrustError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrustError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrustError Unexpected
public static final TrustError UntrustedMessage
public static final TrustError UntrustedSender
public static final TrustError UnknownRecipient
public static final TrustError MissingSenderSignature
public static final TrustError MissingSenderCertificate
public static final TrustError MissingRecipientCertificate
public static final TrustError NoTrustedRecipients
public static final TrustError SignatureValidation
public static TrustError[] values()
for (TrustError c : TrustError.values()) System.out.println(c);
public static TrustError 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 © 2010-2016 NHIN Direct. All Rights Reserved.