public enum CertificatePreviewType extends java.lang.Enum<CertificatePreviewType>
| Enum Constant and Description |
|---|
Jpeg
Download a single page of the certificate in JPG format
|
Pdf
Download a full printable PDF
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static CertificatePreviewType |
valueOf(int intValue) |
static CertificatePreviewType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CertificatePreviewType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificatePreviewType Pdf
public static final CertificatePreviewType Jpeg
public static CertificatePreviewType[] values()
for (CertificatePreviewType c : CertificatePreviewType.values()) System.out.println(c);
public static CertificatePreviewType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static CertificatePreviewType valueOf(int intValue)
public int getValue()