javax.mail
Class UIDFolder.FetchProfileItem
java.lang.Object
  
javax.mail.FetchProfile.Item
      
javax.mail.UIDFolder.FetchProfileItem
- Enclosing interface:
 - UIDFolder
 
public static class UIDFolder.FetchProfileItem
- extends FetchProfile.Item
 
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:
 FetchProfile
| 
Field Summary | 
static UIDFolder.FetchProfileItem | 
UID
 
          UID is a fetch profile item that can be included in a
 FetchProfile during a fetch request to a Folder. | 
 
 
 
 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
 
UID
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 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);
 
 
UIDFolder.FetchProfileItem
protected UIDFolder.FetchProfileItem(java.lang.String name)
Submit a bug or feature  Copyright © 2009-2011, Oracle Corporation and/or its affiliates. All Rights Reserved. Use is subject to license terms.  
 Generated on 10-February-2011 12:41