protected static enum Certificate.CertificateField extends Enum<Certificate.CertificateField> implements EnumType
| Enum Constant and Description |
|---|
SIGNATURE |
SIGNATURE_ALGORITHM |
TBS_CERTIFICATE |
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
int |
getValue() |
static Certificate.CertificateField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Certificate.CertificateField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Certificate.CertificateField TBS_CERTIFICATE
public static final Certificate.CertificateField SIGNATURE_ALGORITHM
public static final Certificate.CertificateField SIGNATURE
public static Certificate.CertificateField[] values()
for (Certificate.CertificateField c : Certificate.CertificateField.values()) System.out.println(c);
public static Certificate.CertificateField 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 © 2014–2022 The Apache Software Foundation. All rights reserved.