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