public static enum X509Cert.Issuer extends Enum<X509Cert.Issuer>
Enum Constant and Description |
---|
C |
CN |
EMAILADDRESS |
O |
Modifier and Type | Method and Description |
---|---|
static X509Cert.Issuer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static X509Cert.Issuer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final X509Cert.Issuer EMAILADDRESS
public static final X509Cert.Issuer C
public static final X509Cert.Issuer O
public static final X509Cert.Issuer CN
public static X509Cert.Issuer[] values()
for (X509Cert.Issuer c : X509Cert.Issuer.values()) System.out.println(c);
public static X509Cert.Issuer 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 © 2024. All rights reserved.