public enum MailHeader extends Enum<MailHeader>
| Enum Constant and Description |
|---|
DELIVERY_RECIEPT |
READ_RECIEPT |
| Modifier and Type | Method and Description |
|---|---|
String |
headerValue() |
static MailHeader |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MailHeader[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailHeader DELIVERY_RECIEPT
public static final MailHeader READ_RECIEPT
public static MailHeader[] values()
for (MailHeader c : MailHeader.values()) System.out.println(c);
public static MailHeader valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String headerValue()
Copyright © 2012 Seam Framework. All Rights Reserved.