| Enum Constant and Description |
|---|
APPROVED |
DISAPPROVED |
ERROR |
PENDING |
PENDING_OCR |
PROCESSING |
| Modifier and Type | Method and Description |
|---|---|
static CAFStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CAFStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="PROCESSANDO") public static final CAFStatus PROCESSING
@SerializedName(value="APROVADO") public static final CAFStatus APPROVED
@SerializedName(value="REPROVADO") public static final CAFStatus DISAPPROVED
@SerializedName(value="PENDENTE") public static final CAFStatus PENDING
@SerializedName(value="PENDENTE OCR") public static final CAFStatus PENDING_OCR
@SerializedName(value="ERRO") public static final CAFStatus ERROR
public static CAFStatus[] values()
for (CAFStatus c : CAFStatus.values()) System.out.println(c);
public static CAFStatus 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