java.lang.Object | +--javax.mail.FetchProfile.Item | +--javax.mail.UIDFolder.FetchProfileItem
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.
FetchProfile
static UIDFolder.FetchProfileItem
UID
FetchProfile
during a fetch request to a Folder.
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public static final UIDFolder.FetchProfileItem UID
FetchProfile
during a fetch request to a Folder.
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 UIDFolder.FetchProfileItem(java.lang.String name)