public enum CertificateRequestDeliveryMethod extends java.lang.Enum<CertificateRequestDeliveryMethod>
Enum Constant and Description |
---|
Download
The request will be processed and turned into a web link (URL) which the user can click on to visit the CertExpress site and immediately
begin entering data about their certificates.
|
Email
The invitation will be sent via email to the recipient's email address.
|
Fax
The invitation will be sent via facsimile to the recipient's facsimile phone number.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static CertificateRequestDeliveryMethod |
valueOf(int intValue) |
static CertificateRequestDeliveryMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CertificateRequestDeliveryMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificateRequestDeliveryMethod Email
public static final CertificateRequestDeliveryMethod Fax
public static final CertificateRequestDeliveryMethod Download
public static CertificateRequestDeliveryMethod[] values()
for (CertificateRequestDeliveryMethod c : CertificateRequestDeliveryMethod.values()) System.out.println(c);
public static CertificateRequestDeliveryMethod 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 CertificateRequestDeliveryMethod valueOf(int intValue)
public int getValue()