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 UNIXmboxmailbox 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 FlagsIMAPFolder. permanentFlagsMethods in gnu.mail.providers.imap that return Flags Modifier and Type Method Description FlagsIMAPMessage. getFlags()FlagsIMAPFolder. getPermanentFlags()Returns the permanent flags for this folder.Methods in gnu.mail.providers.imap with parameters of type Flags Modifier and Type Method Description voidIMAPMessage. 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 FlagsMaildirFolder. getPermanentFlags()Returns the permanent flags for this folder.Methods in gnu.mail.providers.maildir with parameters of type Flags Modifier and Type Method Description voidMaildirMessage. setFlags(Flags flag, boolean set)Set the specified flags(reflected in theinfofield). -
Uses of Flags in gnu.mail.providers.mbox
Methods in gnu.mail.providers.mbox that return Flags Modifier and Type Method Description FlagsMboxFolder. getPermanentFlags()Returns the permanent flags for this folder.Methods in gnu.mail.providers.mbox with parameters of type Flags Modifier and Type Method Description voidMboxMessage. setFlags(Flags flag, boolean set)Set the specified flags(reflected in theStatusheader). -
Uses of Flags in gnu.mail.providers.nntp
Methods in gnu.mail.providers.nntp that return Flags Modifier and Type Method Description FlagsNNTPFolder. getPermanentFlags()Returns the flags supported by this folder.FlagsNNTPRootFolder. getPermanentFlags()Methods in gnu.mail.providers.nntp with parameters of type Flags Modifier and Type Method Description voidNNTPMessage. 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 FlagsPOP3Folder. getPermanentFlags()Returns the permanent flags for this folder.Methods in gnu.mail.providers.pop3 with parameters of type Flags Modifier and Type Method Description voidPOP3Message. 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 FlagsMessage. getFlags()Returns the flags for this message.abstract FlagsFolder. getPermanentFlags()Returns the permanent flags supported by this folder.Methods in javax.mail with parameters of type Flags Modifier and Type Method Description voidFlags. add(Flags flags)Add all the flags from the specified Flags object.booleanFlags. contains(Flags flags)Indicates whether all the flags in the specified Flags object are set in this Flags object.voidFlags. remove(Flags flags)Remove all flags in the given Flags object from this Flags object.voidFolder. setFlags(int[] msgnums, Flags flag, boolean value)Sets the specified flags on each of the specified messages.voidFolder. setFlags(int start, int end, Flags flag, boolean value)Set the specified flags on the given range of messages (inclusive).voidFolder. setFlags(Message[] msgs, Flags flag, boolean value)Sets the specified flags on each specified message.abstract voidMessage. 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 FlagsMimeMessage. flagsThe message flags.Methods in javax.mail.internet that return Flags Modifier and Type Method Description FlagsMimeMessage. getFlags()Returns the flags for this message.Methods in javax.mail.internet with parameters of type Flags Modifier and Type Method Description voidMimeMessage. 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 FlagsFlagTerm. flagsThe flags to test.Methods in javax.mail.search that return Flags Modifier and Type Method Description FlagsFlagTerm. getFlags()Returns the flags to test.Constructors in javax.mail.search with parameters of type Flags Constructor Description FlagTerm(Flags flags, boolean set)Constructor.
-