public enum Flag extends Enum<Flag>
| Enum Constant and Description |
|---|
BAD_SYNTAX
The input given doesn't appear to be an email.
|
FREE_EMAIL_HOST
This email is registered on a free-mail host.
|
HAS_DNS
Domain has DNS.
|
HAS_DNS_MX
Domain has DNS MX.
|
ROLE_ACCOUNT
Role Account.
|
SMTP_CONNECTABLE
SMTP connectable.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription() |
static Flag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Flag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Flag HAS_DNS
public static final Flag HAS_DNS_MX
public static final Flag BAD_SYNTAX
public static final Flag FREE_EMAIL_HOST
public static final Flag SMTP_CONNECTABLE
public static final Flag ROLE_ACCOUNT
public static Flag[] values()
for (Flag c : Flag.values()) System.out.println(c);
public static Flag 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 nullpublic String getDescription()
Copyright © 2017 Metrics Delivered LLC.. All rights reserved.