Enum Class MAIL_TYPE

java.lang.Object
java.lang.Enum<MAIL_TYPE>
de.uplanet.lucy.mail.MAIL_TYPE
All Implemented Interfaces:
Serializable, Comparable<MAIL_TYPE>, Constable

@ConstantClass public enum MAIL_TYPE extends Enum<MAIL_TYPE>
Possible mail types can be
  • TEXT: plain text with content type text/plain,
  • HTML: HTML text with content type text/html, or
  • SMS: SMS plain text with content type text/plain.
  • Enum Constant Details

    • TEXT

      public static final MAIL_TYPE TEXT
    • HTML

      public static final MAIL_TYPE HTML
      HTML mail (content type text/html).
    • SMS

      public static final MAIL_TYPE SMS
      SMS plain text mail (content type text/plain).
  • Method Details

    • values

      public static MAIL_TYPE[] 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 MAIL_TYPE 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
    • contentType

      public String contentType()