| java.lang.Object | ||
| ↳ | com.google.code.javax.mail.FetchProfile.Item | |
| ↳ | com.google.code.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.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| HEADERS | HEADERS is a fetch profile item that can be included in a
FetchProfile during a fetch request to a GmailFolder. |
||||||||||
| SIZE | SIZE is a fetch profile item that can be included in a
FetchProfile during a fetch request to a GmailFolder. |
||||||||||
| X_GM_LABELS | |||||||||||
| X_GM_MSGID | |||||||||||
| X_GM_THRID | |||||||||||
|
[Expand]
Inherited Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.code.javax.mail.FetchProfile.Item
| |||||||||||
| Protected Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
com.google.code.javax.mail.FetchProfile.Item
| |||||||||||
From class
java.lang.Object
| |||||||||||
HEADERS is a fetch profile item that can be included in a
FetchProfile during a fetch request to a GmailFolder.
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);
SIZE is a fetch profile item that can be included in a
FetchProfile during a fetch request to a GmailFolder.
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.
| name |
|---|