Package com.onslip360
Enum API.SendEmailRequest.Template
- java.lang.Object
-
- java.lang.Enum<API.SendEmailRequest.Template>
-
- com.onslip360.API.SendEmailRequest.Template
-
- All Implemented Interfaces:
Serializable
,Comparable<API.SendEmailRequest.Template>
- Enclosing class:
- API.SendEmailRequest
public static enum API.SendEmailRequest.Template extends Enum<API.SendEmailRequest.Template>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description __
CUSTOMER_FEEDBACK
INIT_WEIQ_INTEGRATION
NEW_ACCOUNT_LOGIN_DETAILS
PASSWORD_RESET_CHALLENGE
REPORT_COVER
RESTRICTED_VERSION_WARNING
WELCOME_EMAIL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.SendEmailRequest.Template
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.SendEmailRequest.Template[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOMER_FEEDBACK
public static final API.SendEmailRequest.Template CUSTOMER_FEEDBACK
-
INIT_WEIQ_INTEGRATION
public static final API.SendEmailRequest.Template INIT_WEIQ_INTEGRATION
-
NEW_ACCOUNT_LOGIN_DETAILS
public static final API.SendEmailRequest.Template NEW_ACCOUNT_LOGIN_DETAILS
-
PASSWORD_RESET_CHALLENGE
public static final API.SendEmailRequest.Template PASSWORD_RESET_CHALLENGE
-
RESTRICTED_VERSION_WARNING
public static final API.SendEmailRequest.Template RESTRICTED_VERSION_WARNING
-
WELCOME_EMAIL
public static final API.SendEmailRequest.Template WELCOME_EMAIL
-
REPORT_COVER
public static final API.SendEmailRequest.Template REPORT_COVER
-
__
public static final API.SendEmailRequest.Template __
-
-
Method Detail
-
values
public static API.SendEmailRequest.Template[] 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 (API.SendEmailRequest.Template c : API.SendEmailRequest.Template.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static API.SendEmailRequest.Template 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
-
-