public enum KycDocumentType extends java.lang.Enum<KycDocumentType>
| Enum Constant and Description |
|---|
ADDRESS_PROOF
Only for natural users.
|
ARTICLES_OF_ASSOCIATION
Only for legal users.
|
IDENTITY_PROOF
Only for natural users.
|
NotSpecified
Not specified.
|
REGISTRATION_PROOF
Only for legal users.
|
SHAREHOLDER_DECLARATION
Only for legal users (business company).
|
| Modifier and Type | Method and Description |
|---|---|
static KycDocumentType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KycDocumentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KycDocumentType NotSpecified
public static final KycDocumentType IDENTITY_PROOF
public static final KycDocumentType REGISTRATION_PROOF
public static final KycDocumentType ARTICLES_OF_ASSOCIATION
public static final KycDocumentType SHAREHOLDER_DECLARATION
public static final KycDocumentType ADDRESS_PROOF
public static KycDocumentType[] values()
for (KycDocumentType c : KycDocumentType.values()) System.out.println(c);
public static KycDocumentType 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