public static enum MailHeaders.BaselineValue extends java.lang.Enum<MailHeaders.BaselineValue>
Enum Constant and Description |
---|
ALL
Display all available email headers
|
NONE
Display no email headers
|
STANDARD
Displays To, From, Subject, CC, BCC, Date Sent and Attachments
|
Modifier and Type | Method and Description |
---|---|
static MailHeaders.BaselineValue |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MailHeaders.BaselineValue[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final MailHeaders.BaselineValue ALL
public static final MailHeaders.BaselineValue STANDARD
public static final MailHeaders.BaselineValue NONE
public static MailHeaders.BaselineValue[] values()
for (MailHeaders.BaselineValue c : MailHeaders.BaselineValue.values()) System.out.println(c);
public static MailHeaders.BaselineValue valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null