org.apache.hupa.shared.data
Enum Message.IMAPFlag

java.lang.Object
  extended by java.lang.Enum<Message.IMAPFlag>
      extended by 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>


Enum Constant Summary
ANSWERED
           
DELETED
           
DRAFT
           
FLAGGED
           
JUNK
           
RECENT
           
SEEN
           
USER
           
 
Method Summary
static Message.IMAPFlag valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Message.IMAPFlag[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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.