public static enum MailHandler.MessageStatus extends Enum<MailHandler.MessageStatus>
| Enum Constant and Description |
|---|
DELIVERED |
ERROR |
ERRORNEOUS_DELIVERED |
IGNORED |
TOO_BIG |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static MailHandler.MessageStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MailHandler.MessageStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailHandler.MessageStatus DELIVERED
public static final MailHandler.MessageStatus ERRORNEOUS_DELIVERED
public static final MailHandler.MessageStatus ERROR
public static final MailHandler.MessageStatus IGNORED
public static final MailHandler.MessageStatus TOO_BIG
public static final MailHandler.MessageStatus UNDEFINED
public static MailHandler.MessageStatus[] values()
for (MailHandler.MessageStatus c : MailHandler.MessageStatus.values()) System.out.println(c);
public static MailHandler.MessageStatus 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 nullMMBase 1.9-SNAPSHOT - ${javadoctimestamp}