public static enum IMAPClient.FETCH_ITEM_NAMES extends java.lang.Enum<IMAPClient.FETCH_ITEM_NAMES>
Enum Constant | Description |
---|---|
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.
|
Modifier and Type | Method | Description |
---|---|---|
static IMAPClient.FETCH_ITEM_NAMES |
valueOf(java.lang.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.
|
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
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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null