public enum CertExpressInvitationStatus extends java.lang.Enum<CertExpressInvitationStatus>
| Enum Constant and Description |
|---|
InProgress
The CertExpress website is currently building a landing page for the customer.
|
Ready
Indicates that the CertExpress invitation has been completed and is ready to use.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static CertExpressInvitationStatus |
valueOf(int intValue) |
static CertExpressInvitationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CertExpressInvitationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertExpressInvitationStatus InProgress
public static final CertExpressInvitationStatus Ready
public static CertExpressInvitationStatus[] values()
for (CertExpressInvitationStatus c : CertExpressInvitationStatus.values()) System.out.println(c);
public static CertExpressInvitationStatus 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 CertExpressInvitationStatus valueOf(int intValue)
public int getValue()