public static enum MailHandler.MailBoxStatus extends Enum<MailHandler.MailBoxStatus>
| Enum Constant and Description |
|---|
CANT_CREATE_INBOX |
NO_INBOX |
NO_SUCH_USER |
OK |
TOO_MANY_INBOXES |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static MailHandler.MailBoxStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MailHandler.MailBoxStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailHandler.MailBoxStatus OK
public static final MailHandler.MailBoxStatus NO_SUCH_USER
public static final MailHandler.MailBoxStatus NO_INBOX
public static final MailHandler.MailBoxStatus CANT_CREATE_INBOX
public static final MailHandler.MailBoxStatus TOO_MANY_INBOXES
public static final MailHandler.MailBoxStatus UNDEFINED
public static MailHandler.MailBoxStatus[] values()
for (MailHandler.MailBoxStatus c : MailHandler.MailBoxStatus.values()) System.out.println(c);
public static MailHandler.MailBoxStatus 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}