org.apache.hupa.shared.data
Enum Message.IMAPFlag
java.lang.Object
java.lang.Enum<Message.IMAPFlag>
org.apache.hupa.shared.data.Message.IMAPFlag
- All Implemented Interfaces:
- Serializable, Comparable<Message.IMAPFlag>
- Enclosing class:
- Message
public static enum Message.IMAPFlag
- extends Enum<Message.IMAPFlag>
SEEN
public static final Message.IMAPFlag SEEN
DELETED
public static final Message.IMAPFlag DELETED
RECENT
public static final Message.IMAPFlag RECENT
ANSWERED
public static final Message.IMAPFlag ANSWERED
JUNK
public static final Message.IMAPFlag JUNK
DRAFT
public static final Message.IMAPFlag DRAFT
FLAGGED
public static final Message.IMAPFlag FLAGGED
USER
public static final Message.IMAPFlag USER
values
public static Message.IMAPFlag[] 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 (Message.IMAPFlag c : Message.IMAPFlag.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Message.IMAPFlag 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
Copyright © 2009-2012 The Apache Software Foundation. All Rights Reserved.