public enum ValidationType extends Enum<ValidationType>
| Enum Constant and Description |
|---|
bank_account_number |
bank_routing_number |
email_address |
employer_identification_number |
letters_only |
numbers_only |
phone_number |
social_security_number |
zip_code |
| Modifier and Type | Method and Description |
|---|---|
static ValidationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValidationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValidationType numbers_only
public static final ValidationType letters_only
public static final ValidationType phone_number
public static final ValidationType bank_routing_number
public static final ValidationType bank_account_number
public static final ValidationType email_address
public static final ValidationType zip_code
public static final ValidationType social_security_number
public static final ValidationType employer_identification_number
public static ValidationType[] values()
for (ValidationType c : ValidationType.values()) System.out.println(c);
public static ValidationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2019 HelloSign. All rights reserved.