public enum EmailerType extends Enum<EmailerType>
| Modifier and Type | Method and Description |
|---|---|
static EmailerType |
fromString(String t)
Returns the EmailerType from a string value.
|
String |
toString() |
static EmailerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmailerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmailerType SMTP
public static final EmailerType SES
public static EmailerType[] values()
for (EmailerType c : EmailerType.values()) System.out.println(c);
public static EmailerType 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 static EmailerType fromString(String t)
string - public String toString()
toString in class Enum<EmailerType>Copyright © 2009–2020 LYRASIS. All rights reserved.