public enum CertCaptureProvisionStatus extends java.lang.Enum<CertCaptureProvisionStatus>
Enum Constant and Description |
---|
InProgress
Provision job is being queued
This could also be an indication that some companies under an account has been provisioned, while others
under the same account has not.
|
NotProvisioned |
Provisioned
Account and company are provisioned
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static CertCaptureProvisionStatus |
valueOf(int intValue) |
static CertCaptureProvisionStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CertCaptureProvisionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertCaptureProvisionStatus Provisioned
public static final CertCaptureProvisionStatus InProgress
public static final CertCaptureProvisionStatus NotProvisioned
public static CertCaptureProvisionStatus[] values()
for (CertCaptureProvisionStatus c : CertCaptureProvisionStatus.values()) System.out.println(c);
public static CertCaptureProvisionStatus 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 CertCaptureProvisionStatus valueOf(int intValue)
public int getValue()