| Enum Constant and Description |
|---|
CREATED
CREATED KYC status.
|
NotSpecified
Not specified.
|
OUT_OF_DATE
OUT_OF_DATE kyc status
|
REFUSED
REFUSED KYC status.
|
VALIDATED
VALIDATED KYC status.
|
VALIDATION_ASKED
VALIDATION ASKED KYC status.
|
| Modifier and Type | Method and Description |
|---|---|
static KycStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KycStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KycStatus NotSpecified
public static final KycStatus CREATED
public static final KycStatus VALIDATION_ASKED
public static final KycStatus VALIDATED
public static final KycStatus REFUSED
public static final KycStatus OUT_OF_DATE
public static KycStatus[] values()
for (KycStatus c : KycStatus.values()) System.out.println(c);
public static KycStatus 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