Class FetchProfile.Item
- Direct Known Subclasses:
UIDFolder.FetchProfileItem
- Enclosing class:
- FetchProfile
ENVELOPE
, CONTENT_INFO
and FLAGS
. The UIDFolder
interface
defines the UID
Item as well. Note that this class only has a protected constructor, therby restricting new Item types to either this class or subclasses. This effectively implements a enumeration of allowed Item types.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionstatic final FetchProfile.Item
This item is for fetching information about the content of the message.static final FetchProfile.Item
This is the Envelope item.static final FetchProfile.Item
This is the Flags item.static final FetchProfile.Item
SIZE is a fetch profile item that can be included in aFetchProfile
during a fetch request to a Folder. -
Constructor Summary
-
Method Summary
-
Field Details
-
ENVELOPE
This is the Envelope item.The Envelope is an aggregration of the common attributes of a Message. Implementations should include the following attributes: From, To, Cc, Bcc, ReplyTo, Subject and Date. More items may be included as well.
For implementations of the IMAP4 protocol (RFC 2060), the Envelope should include the ENVELOPE data item. More items may be included too.
-
CONTENT_INFO
This item is for fetching information about the content of the message.This includes all the attributes that describe the content of the message. Implementations should include the following attributes: ContentType, ContentDisposition, ContentDescription, Size and LineCount. Other items may be included as well.
-
SIZE
SIZE is a fetch profile item that can be included in aFetchProfile
during a fetch request to a Folder. This item indicates that the sizes of the messages in the specified range should be prefetched.- Since:
- JavaMail 1.5
-
FLAGS
This is the Flags item.
-
-
Constructor Details
-
Item
Constructor for an item. The name is used only for debugging.- Parameters:
name
- the item name
-
-
Method Details