|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<IMAPClient.FETCH_ITEM_NAMES> org.apache.commons.net.imap.IMAPClient.FETCH_ITEM_NAMES
public static enum IMAPClient.FETCH_ITEM_NAMES
The message data item names for the FETCH command defined in RFC 3501.
Enum Constant Summary | |
---|---|
ALL
Macro equivalent to: (FLAGS INTERNALDATE RFC822.SIZE ENVELOPE). |
|
BODY
Non-extensible form of BODYSTRUCTURE or the text of a particular body section. |
|
BODYSTRUCTURE
The [MIME-IMB] body structure of the message. |
|
ENVELOPE
The envelope structure of the message. |
|
FAST
Macro equivalent to: (FLAGS INTERNALDATE RFC822.SIZE). |
|
FLAGS
The flags that are set for this message. |
|
FULL
Macro equivalent to: (FLAGS INTERNALDATE RFC822.SIZE ENVELOPE BODY). |
|
INTERNALDATE
The internal date of the message. |
|
RFC822
A prefix for RFC-822 item names. |
|
UID
The unique identifier for the message. |
Method Summary | |
---|---|
static IMAPClient.FETCH_ITEM_NAMES |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static IMAPClient.FETCH_ITEM_NAMES[] |
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 |
---|
public static final IMAPClient.FETCH_ITEM_NAMES ALL
public static final IMAPClient.FETCH_ITEM_NAMES FAST
public static final IMAPClient.FETCH_ITEM_NAMES FULL
public static final IMAPClient.FETCH_ITEM_NAMES BODY
public static final IMAPClient.FETCH_ITEM_NAMES BODYSTRUCTURE
public static final IMAPClient.FETCH_ITEM_NAMES ENVELOPE
public static final IMAPClient.FETCH_ITEM_NAMES FLAGS
public static final IMAPClient.FETCH_ITEM_NAMES INTERNALDATE
public static final IMAPClient.FETCH_ITEM_NAMES RFC822
public static final IMAPClient.FETCH_ITEM_NAMES UID
Method Detail |
---|
public static IMAPClient.FETCH_ITEM_NAMES[] values()
for (IMAPClient.FETCH_ITEM_NAMES c : IMAPClient.FETCH_ITEM_NAMES.values()) System.out.println(c);
public static IMAPClient.FETCH_ITEM_NAMES valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |