org.starhope.appius.messaging
Enum MailMessage.MessageFlag
java.lang.Object
java.lang.Enum<MailMessage.MessageFlag>
org.starhope.appius.messaging.MailMessage.MessageFlag
- All Implemented Interfaces:
- Serializable, Comparable<MailMessage.MessageFlag>
- Enclosing class:
- MailMessage
public static enum MailMessage.MessageFlag
- extends Enum<MailMessage.MessageFlag>
Flags for messages
- Author:
- Tim Heys
Enum Constant Summary |
COOL
Used for TootsBook in line with Facebook's "like" |
COOL
public static final MailMessage.MessageFlag COOL
- Used for TootsBook in line with Facebook's "like"
values
public static MailMessage.MessageFlag[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (MailMessage.MessageFlag c : MailMessage.MessageFlag.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static MailMessage.MessageFlag valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null