com.sun.mail.imap.Utility.toUIDSet()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(110)

本文整理了Java中com.sun.mail.imap.Utility.toUIDSet()方法的一些代码示例,展示了Utility.toUIDSet()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Utility.toUIDSet()方法的具体详情如下:
包路径:com.sun.mail.imap.Utility
类名称:Utility
方法名:toUIDSet

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();

相关文章