public static enum JobApprovalResponse.ResponseStatus extends java.lang.Enum<JobApprovalResponse.ResponseStatus>
| Enum Constant and Description |
|---|
AUTH_ERROR |
INSUFFICIENT_FUNDS |
INTERNAL_ERROR |
INVALID_JOB_ID |
INVALID_JOB_STATE |
INVALID_MAIL_DATE |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static JobApprovalResponse.ResponseStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JobApprovalResponse.ResponseStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobApprovalResponse.ResponseStatus SUCCESS
public static final JobApprovalResponse.ResponseStatus AUTH_ERROR
public static final JobApprovalResponse.ResponseStatus INVALID_JOB_ID
public static final JobApprovalResponse.ResponseStatus INSUFFICIENT_FUNDS
public static final JobApprovalResponse.ResponseStatus INVALID_MAIL_DATE
public static final JobApprovalResponse.ResponseStatus INVALID_JOB_STATE
public static final JobApprovalResponse.ResponseStatus INTERNAL_ERROR
public static JobApprovalResponse.ResponseStatus[] values()
for (JobApprovalResponse.ResponseStatus c : JobApprovalResponse.ResponseStatus.values()) System.out.println(c);
public static JobApprovalResponse.ResponseStatus 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 null