public static enum SmtpConfig.SMTPAuthentication extends Enum<SmtpConfig.SMTPAuthentication>
| Modifier and Type | Method and Description |
|---|---|
static SmtpConfig.SMTPAuthentication |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SmtpConfig.SMTPAuthentication[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmtpConfig.SMTPAuthentication NONE
public static final SmtpConfig.SMTPAuthentication PLAIN
public static final SmtpConfig.SMTPAuthentication TLS
public static final SmtpConfig.SMTPAuthentication SSL
public static SmtpConfig.SMTPAuthentication[] values()
for (SmtpConfig.SMTPAuthentication c : SmtpConfig.SMTPAuthentication.values()) System.out.println(c);
public static SmtpConfig.SMTPAuthentication 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 © 2017. All Rights Reserved.