javax.mail
类 UIDFolder.FetchProfileItem

java.lang.Object
  继承者 javax.mail.FetchProfile.Item
      继承者 javax.mail.UIDFolder.FetchProfileItem
正在封闭接口:
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.

另请参见:
FetchProfile

字段摘要
static UIDFolder.FetchProfileItem UID
          UID is a fetch profile item that can be included in a FetchProfile during a fetch request to a Folder.
 
从类 javax.mail.FetchProfile.Item 继承的字段
CONTENT_INFO, ENVELOPE, FLAGS
 
构造方法摘要
protected UIDFolder.FetchProfileItem(String name)
           
 
方法摘要
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, 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(String name)


Copyright © 2013. All Rights Reserved.