Uses of Record Class
cloud.opencode.base.email.EmailFlags
Packages that use EmailFlags
-
Uses of EmailFlags in cloud.opencode.base.email
Fields in cloud.opencode.base.email declared as EmailFlagsModifier and TypeFieldDescriptionstatic final EmailFlagsEmailFlags.READDefault flags for a read email 已读邮件的默认标记static final EmailFlagsEmailFlags.UNREADDefault flags for a new unread email 新未读邮件的默认标记Methods in cloud.opencode.base.email that return EmailFlagsModifier and TypeMethodDescriptionReceivedEmail.flags()Returns the value of theflagsrecord component.static EmailFlagsEmailFlags.fromImapFlags(String imapFlags) Create flags from IMAP flags string 从IMAP标记字符串创建标记EmailFlags.withAnswered(boolean answered) Create a copy with answered flag set 创建设置已回复标记的副本EmailFlags.withDeleted(boolean deleted) Create a copy with deleted flag set 创建设置删除标记的副本EmailFlags.withFlagged(boolean flagged) Create a copy with flagged status set 创建设置标记状态的副本EmailFlags.withSeen(boolean seen) Create a copy with seen flag set 创建设置已读标记的副本Methods in cloud.opencode.base.email with parameters of type EmailFlagsConstructors in cloud.opencode.base.email with parameters of type EmailFlagsModifierConstructorDescriptionReceivedEmail(String messageId, String from, String fromName, List<String> to, List<String> cc, List<String> bcc, String replyTo, String subject, String textContent, String htmlContent, Instant sentDate, Instant receivedDate, List<Attachment> attachments, Map<String, String> headers, EmailFlags flags, String folder, int messageNumber, long size) Creates an instance of aReceivedEmailrecord class.