public static enum Creditor.VerificationStatus extends java.lang.Enum<Creditor.VerificationStatus>
| Enum Constant and Description |
|---|
ACTION_REQUIRED |
IN_REVIEW |
SUCCESSFUL |
| Modifier and Type | Method and Description |
|---|---|
static Creditor.VerificationStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Creditor.VerificationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="successful") public static final Creditor.VerificationStatus SUCCESSFUL
@SerializedName(value="in_review") public static final Creditor.VerificationStatus IN_REVIEW
@SerializedName(value="action_required") public static final Creditor.VerificationStatus ACTION_REQUIRED
public static Creditor.VerificationStatus[] values()
for (Creditor.VerificationStatus c : Creditor.VerificationStatus.values()) System.out.println(c);
public static Creditor.VerificationStatus 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