public enum Result extends Enum<Result>
| Enum Constant and Description |
|---|
CATCHALL
This is also known as an “accept all”.
|
DISPOSABLE
Disposable emails are temporary accounts used to avoid using a real personal account during a
sign-up process.
|
INVALID
An invalid email address has been verified as a bad recipient address that does not exist or is
not accepting mail.
|
UNKNOWN
We are unable to definitively determine this email’s status.
|
VALID
A valid email address has been verified as a real email that is currently accepting mail.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
String |
getDescription() |
SafeToSend |
isSafeToSend() |
static Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Result VALID
public static final Result INVALID
public static final Result DISPOSABLE
public static final Result CATCHALL
public static final Result UNKNOWN
public static Result[] values()
for (Result c : Result.values()) System.out.println(c);
public static Result 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 int getCode()
public String getDescription()
public SafeToSend isSafeToSend()
Copyright © 2017 Metrics Delivered LLC.. All rights reserved.