public enum MailAction extends Enum<MailAction>
| Enum Constant and Description |
|---|
ARCHIVE |
GROUP |
PRINT |
REPLY |
TRANSMIT |
| Modifier and Type | Method and Description |
|---|---|
static MailAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MailAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MailAction TRANSMIT
public static final MailAction PRINT
public static final MailAction ARCHIVE
public static final MailAction REPLY
public static final MailAction GROUP
public static MailAction[] values()
for (MailAction c : MailAction.values()) System.out.println(c);
public static MailAction 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 nullCopyright © 2014–2016 CodeLutin. All rights reserved.