public static enum X509CertImpl.EncodedFormat extends Enum<X509CertImpl.EncodedFormat>
| Modifier and Type | Method and Description |
|---|---|
static X509CertImpl.EncodedFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static X509CertImpl.EncodedFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final X509CertImpl.EncodedFormat DER
public static final X509CertImpl.EncodedFormat PEM
public static X509CertImpl.EncodedFormat 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 X509CertImpl.EncodedFormat[] values()
for (X509CertImpl.EncodedFormat c : X509CertImpl.EncodedFormat.values()) System.out.println(c);