本文整理了Java中com.sun.mail.imap.Utility.toUIDSet()
方法的一些代码示例,展示了Utility.toUIDSet()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Utility.toUIDSet()
方法的具体详情如下:
包路径:com.sun.mail.imap.Utility
类名称:Utility
方法名:toUIDSet
[英]Return UIDSets for the messages. Note that the UIDs must have already been fetched for the messages.
[中]返回消息的UID集。请注意,必须已经为消息获取了UID。
代码示例来源:origin: camunda/camunda-bpm-platform
IMAPProtocol p = getProtocol();
if (msgs != null)
p.uidexpunge(Utility.toUIDSet(msgs));
else
p.expunge();
代码示例来源:origin: com.sun.mail/javax.mail
IMAPProtocol p = getProtocol();
if (msgs != null)
p.uidexpunge(Utility.toUIDSet(msgs));
else
p.expunge();
代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.javax.mail
IMAPProtocol p = getProtocol();
if (msgs != null)
p.uidexpunge(Utility.toUIDSet(msgs));
else
p.expunge();
代码示例来源:origin: javax.mail/com.springsource.javax.mail
IMAPProtocol p = getProtocol();
if (msgs != null)
p.uidexpunge(Utility.toUIDSet(msgs));
else
p.expunge();
代码示例来源:origin: com.sun.mail/android-mail
IMAPProtocol p = getProtocol();
if (msgs != null)
p.uidexpunge(Utility.toUIDSet(msgs));
else
p.expunge();
代码示例来源:origin: org.glassfish.metro/webservices-extra
IMAPProtocol p = getProtocol();
if (msgs != null)
p.uidexpunge(Utility.toUIDSet(msgs));
else
p.expunge();
代码示例来源:origin: com.sun.mail/jakarta.mail
IMAPProtocol p = getProtocol();
if (msgs != null)
p.uidexpunge(Utility.toUIDSet(msgs));
else
p.expunge();
代码示例来源:origin: jboss/jboss-javaee-specs
IMAPProtocol p = getProtocol();
if (msgs != null)
p.uidexpunge(Utility.toUIDSet(msgs));
else
p.expunge();
内容来源于网络,如有侵权,请联系作者删除!