public enum CertificateType extends Enum<CertificateType>
CertificateInfo class for storing and
converting certificates| Enum Constant and Description |
|---|
DER_BYTES
Comment for
DER_BYTES |
JAVA_X509
Comment for
JAVA_X509 |
RSA_X509 |
| Modifier and Type | Method and Description |
|---|---|
static CertificateType |
getValueFromString(String id) |
String |
toString() |
static CertificateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertificateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificateType JAVA_X509
JAVA_X509public static final CertificateType DER_BYTES
DER_BYTESpublic static final CertificateType RSA_X509
public static CertificateType[] values()
for (CertificateType c : CertificateType.values()) System.out.println(c);
public static CertificateType 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 nullpublic static CertificateType getValueFromString(String id)
public String toString()
toString in class Enum<CertificateType>Copyright © 1982–2023 Adobe Systems Incorporated. All rights reserved.