Uses of Class
javax.mail.Flags
-
Packages that use Flags Package Description gnu.mail.providers.imap This is a provider for the Internet Message Access Protocol, version 4rev1 (IMAP4rev1), as detailed in RFC 3501.gnu.mail.providers.maildir gnu.mail.providers.mbox This is a provider for the UNIXmbox
mailbox file format, used by many 3rd-party MUAs including Netscape, Mozilla, mutt, elm, and pine.gnu.mail.providers.nntp This is a provider for the Network News Transfer Protocol (NNTP), as detailed in RFC 977.gnu.mail.providers.pop3 This is a provider for the Internet Post Office Protocol, version 3 (POP3), as detailed in RFC 1939.javax.mail Classes modelling a mail system.javax.mail.internet Classes modelling Internet mail systems.javax.mail.search Search expressions for executing searches on the messages in a folder. -
-
Uses of Flags in gnu.mail.providers.imap
Fields in gnu.mail.providers.imap declared as Flags Modifier and Type Field Description protected Flags
IMAPFolder. permanentFlags
Methods in gnu.mail.providers.imap that return Flags Modifier and Type Method Description Flags
IMAPMessage. getFlags()
Flags
IMAPFolder. getPermanentFlags()
Returns the permanent flags for this folder.Methods in gnu.mail.providers.imap with parameters of type Flags Modifier and Type Method Description void
IMAPMessage. setFlags(Flags flag, boolean set)
Set the specified flags. -
Uses of Flags in gnu.mail.providers.maildir
Methods in gnu.mail.providers.maildir that return Flags Modifier and Type Method Description Flags
MaildirFolder. getPermanentFlags()
Returns the permanent flags for this folder.Methods in gnu.mail.providers.maildir with parameters of type Flags Modifier and Type Method Description void
MaildirMessage. setFlags(Flags flag, boolean set)
Set the specified flags(reflected in theinfo
field). -
Uses of Flags in gnu.mail.providers.mbox
Methods in gnu.mail.providers.mbox that return Flags Modifier and Type Method Description Flags
MboxFolder. getPermanentFlags()
Returns the permanent flags for this folder.Methods in gnu.mail.providers.mbox with parameters of type Flags Modifier and Type Method Description void
MboxMessage. setFlags(Flags flag, boolean set)
Set the specified flags(reflected in theStatus
header). -
Uses of Flags in gnu.mail.providers.nntp
Methods in gnu.mail.providers.nntp that return Flags Modifier and Type Method Description Flags
NNTPFolder. getPermanentFlags()
Returns the flags supported by this folder.Flags
NNTPRootFolder. getPermanentFlags()
Methods in gnu.mail.providers.nntp with parameters of type Flags Modifier and Type Method Description void
NNTPMessage. setFlags(Flags flag, boolean set)
-
Uses of Flags in gnu.mail.providers.pop3
Methods in gnu.mail.providers.pop3 that return Flags Modifier and Type Method Description Flags
POP3Folder. getPermanentFlags()
Returns the permanent flags for this folder.Methods in gnu.mail.providers.pop3 with parameters of type Flags Modifier and Type Method Description void
POP3Message. setFlags(Flags flags, boolean set)
Set flags (but only DELETED is supported) add or remove the message from the folder deleted message list. -
Uses of Flags in javax.mail
Methods in javax.mail that return Flags Modifier and Type Method Description abstract Flags
Message. getFlags()
Returns the flags for this message.abstract Flags
Folder. getPermanentFlags()
Returns the permanent flags supported by this folder.Methods in javax.mail with parameters of type Flags Modifier and Type Method Description void
Flags. add(Flags flags)
Add all the flags from the specified Flags object.boolean
Flags. contains(Flags flags)
Indicates whether all the flags in the specified Flags object are set in this Flags object.void
Flags. remove(Flags flags)
Remove all flags in the given Flags object from this Flags object.void
Folder. setFlags(int[] msgnums, Flags flag, boolean value)
Sets the specified flags on each of the specified messages.void
Folder. setFlags(int start, int end, Flags flag, boolean value)
Set the specified flags on the given range of messages (inclusive).void
Folder. setFlags(Message[] msgs, Flags flag, boolean value)
Sets the specified flags on each specified message.abstract void
Message. setFlags(Flags flag, boolean set)
Sets the specified flags on this message to the given value.Constructors in javax.mail with parameters of type Flags Constructor Description Flags(Flags flags)
Construct a Flags object containing the given flags. -
Uses of Flags in javax.mail.internet
Fields in javax.mail.internet declared as Flags Modifier and Type Field Description protected Flags
MimeMessage. flags
The message flags.Methods in javax.mail.internet that return Flags Modifier and Type Method Description Flags
MimeMessage. getFlags()
Returns the flags for this message.Methods in javax.mail.internet with parameters of type Flags Modifier and Type Method Description void
MimeMessage. setFlags(Flags flag, boolean set)
Sets the flags for this message. -
Uses of Flags in javax.mail.search
Fields in javax.mail.search declared as Flags Modifier and Type Field Description protected Flags
FlagTerm. flags
The flags to test.Methods in javax.mail.search that return Flags Modifier and Type Method Description Flags
FlagTerm. getFlags()
Returns the flags to test.Constructors in javax.mail.search with parameters of type Flags Constructor Description FlagTerm(Flags flags, boolean set)
Constructor.
-