|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--javax.mail.FetchProfile.Item | +--com.sun.mail.imap.IMAPFolder.FetchProfileItem
A fetch profile item for fetching headers.
This inner class extends the FetchProfile.Item
class to add new FetchProfile item types, specific to IMAPFolders.
FetchProfile
Field Summary | |
static IMAPFolder.FetchProfileItem |
HEADERS
HEADERS is a fetch profile item that can be included in a FetchProfile during a fetch request to a Folder. |
static IMAPFolder.FetchProfileItem |
SIZE
SIZE is a fetch profile item that can be included in a FetchProfile during a fetch request to a Folder. |
Fields inherited from class javax.mail.FetchProfile.Item |
CONTENT_INFO, ENVELOPE, FLAGS |
Constructor Summary | |
protected |
IMAPFolder.FetchProfileItem(java.lang.String name)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final IMAPFolder.FetchProfileItem HEADERS
FetchProfile
during a fetch request to a Folder.
This item indicates that the headers for messages in the specified
range are desired to be prefetched. An example of how a client uses this is below:
FetchProfile fp = new FetchProfile(); fp.add(IMAPFolder.FetchProfileItem.HEADERS); folder.fetch(msgs, fp);
public static final IMAPFolder.FetchProfileItem SIZE
FetchProfile
during a fetch request to a Folder.
This item indicates that the sizes of the messages in the specified
range are desired to be prefetched. SIZE should move to FetchProfile.Item in JavaMail 1.3.
Constructor Detail |
protected IMAPFolder.FetchProfileItem(java.lang.String name)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |