Enum MAIL_TYPE

  • All Implemented Interfaces:
    Serializable, Comparable<MAIL_TYPE>

    @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 Detail

      • 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 Detail

      • values

        public static MAIL_TYPE[] 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 (MAIL_TYPE c : MAIL_TYPE.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static MAIL_TYPE 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 name
        NullPointerException - if the argument is null
      • contentType

        public String contentType()