public static class

UIDFolder.FetchProfileItem

extends FetchProfile.Item
java.lang.Object
   ↳ com.google.code.javax.mail.FetchProfile.Item
     ↳ com.google.code.javax.mail.UIDFolder.FetchProfileItem

Class Overview

A fetch profile item for fetching UIDs. This inner class extends the FetchProfile.Item class to add new FetchProfile item types, specific to UIDFolders. The only item currently defined here is the UID item.

See Also

Summary

Fields
public static final UIDFolder.FetchProfileItem UID UID is a fetch profile item that can be included in a FetchProfile during a fetch request to a GmailFolder.
[Expand]
Inherited Fields
From class com.google.code.javax.mail.FetchProfile.Item
Protected Constructors
UIDFolder.FetchProfileItem(String name)
[Expand]
Inherited Methods
From class com.google.code.javax.mail.FetchProfile.Item
From class java.lang.Object

Fields

public static final UIDFolder.FetchProfileItem UID

UID is a fetch profile item that can be included in a FetchProfile during a fetch request to a GmailFolder. This item indicates that the UIDs 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(UIDFolder.FetchProfileItem.UID);
	folder.fetch(msgs, fp);

 

Protected Constructors

protected UIDFolder.FetchProfileItem (String name)

Parameters
name