Enum Class EmailTemplate

java.lang.Object
java.lang.Enum<EmailTemplate>
com.bluebell.greenhouse.platform.enums.email.EmailTemplate
All Implemented Interfaces:
GenericEnum<EmailTemplate>, Serializable, Comparable<EmailTemplate>, Constable

public enum EmailTemplate extends Enum<EmailTemplate> implements GenericEnum<EmailTemplate>
Enumeration representing the various email templates.
Version:
2.0.3
Author:
Stephen Prizio
  • Enum Constant Details

    • SIMPLE

      public static final EmailTemplate SIMPLE
    • MARKET_EVENTS

      public static final EmailTemplate MARKET_EVENTS
    • FAILED_JOB

      public static final EmailTemplate FAILED_JOB
    • FAILED_SYSTEM_API_CALL

      public static final EmailTemplate FAILED_SYSTEM_API_CALL
    • PASSWORD_RESET

      public static final EmailTemplate PASSWORD_RESET
    • CONTACT_US

      public static final EmailTemplate CONTACT_US
    • ISSUE_FEATURE_REQUEST

      public static final EmailTemplate ISSUE_FEATURE_REQUEST
  • Method Details

    • values

      public static EmailTemplate[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EmailTemplate valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null