| Enum Constant and Description |
|---|
COMPANY |
DOCUMENT_VALIDATION |
PERSON |
VALIDATION |
VEHICLE |
| Modifier and Type | Method and Description |
|---|---|
static CheckType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CheckType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="company") public static final CheckType COMPANY
@SerializedName(value="person") public static final CheckType PERSON
@SerializedName(value="vehicle") public static final CheckType VEHICLE
@SerializedName(value="validation") public static final CheckType VALIDATION
@SerializedName(value="document-validation") public static final CheckType DOCUMENT_VALIDATION
public static CheckType[] values()
for (CheckType c : CheckType.values()) System.out.println(c);
public static CheckType 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