Package com.avoka.tm.svc
Enum UserEmailer.EmailType
- java.lang.Object
-
- java.lang.Enum<UserEmailer.EmailType>
-
- com.avoka.tm.svc.UserEmailer.EmailType
-
- All Implemented Interfaces:
Serializable
,Comparable<UserEmailer.EmailType>
- Enclosing class:
- UserEmailer
public static enum UserEmailer.EmailType extends Enum<UserEmailer.EmailType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOST_PASSWORD
VERIFICATION
WELCOME
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UserEmailer.EmailType
valueOf(String name)
Returns the enum constant of this type with the specified name.static UserEmailer.EmailType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOST_PASSWORD
public static final UserEmailer.EmailType LOST_PASSWORD
-
VERIFICATION
public static final UserEmailer.EmailType VERIFICATION
-
WELCOME
public static final UserEmailer.EmailType WELCOME
-
-
Method Detail
-
values
public static UserEmailer.EmailType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UserEmailer.EmailType c : UserEmailer.EmailType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UserEmailer.EmailType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-