Package org.opends.server.util
Enum EMailMessage.MimeTextSubType
- java.lang.Object
-
- java.lang.Enum<EMailMessage.MimeTextSubType>
-
- org.opends.server.util.EMailMessage.MimeTextSubType
-
- All Implemented Interfaces:
Serializable
,Comparable<EMailMessage.MimeTextSubType>
- Enclosing class:
- EMailMessage
public static enum EMailMessage.MimeTextSubType extends Enum<EMailMessage.MimeTextSubType>
The MIME text subtype for the message body.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EMailMessage.MimeTextSubType
valueOf(String name)
Returns the enum constant of this type with the specified name.static EMailMessage.MimeTextSubType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PLAIN
public static final EMailMessage.MimeTextSubType PLAIN
Corresponds to"text/plain"
.
-
HTML
public static final EMailMessage.MimeTextSubType HTML
Corresponds to"text/html"
.
-
-
Method Detail
-
values
public static EMailMessage.MimeTextSubType[] 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 (EMailMessage.MimeTextSubType c : EMailMessage.MimeTextSubType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EMailMessage.MimeTextSubType 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
-
-