public enum CertificateSourceType extends Enum<CertificateSourceType>
| Enum Constant and Description |
|---|
AIA |
OCSP_RESPONSE |
OTHER |
SIGNATURE |
TIMESTAMP |
TRUSTED_LIST |
TRUSTED_STORE |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static CertificateSourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertificateSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificateSourceType TRUSTED_STORE
public static final CertificateSourceType TRUSTED_LIST
public static final CertificateSourceType SIGNATURE
public static final CertificateSourceType OCSP_RESPONSE
public static final CertificateSourceType OTHER
public static final CertificateSourceType AIA
public static final CertificateSourceType TIMESTAMP
public static final CertificateSourceType UNKNOWN
public static CertificateSourceType[] values()
for (CertificateSourceType c : CertificateSourceType.values()) System.out.println(c);
public static CertificateSourceType 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 © 2018. All rights reserved.