Uses of Class
jakarta.mail.Flags
-
Packages that use Flags Package Description jakarta.mail The Jakarta Mail API provides classes that model a mail system.jakarta.mail.internet Classes specific to Internet mail systems.jakarta.mail.search Message search terms for the Jakarta Mail API.org.eclipse.angus.mail.imap An IMAP protocol provider for the Jakarta Mail API that provides access to an IMAP message store.org.eclipse.angus.mail.imap.protocol This package includes internal IMAP support classes and SHOULD NOT BE USED DIRECTLY BY APPLICATIONS.org.eclipse.angus.mail.pop3 A POP3 protocol provider for the Jakarta Mail API that provides access to a POP3 message store. -
-
Uses of Flags in jakarta.mail
Methods in jakarta.mail that return Flags Modifier and Type Method Description abstract FlagsMessage. getFlags()Returns aFlagsobject containing the flags for this message.abstract FlagsFolder. getPermanentFlags()Get the permanent flags supported by this Folder.Methods in jakarta.mail with parameters of type Flags Modifier and Type Method Description voidFlags. add(Flags f)Add all the flags in the given Flags object to this Flags object.booleanFlags. contains(Flags f)Check whether all the flags in the specified Flags object are present in this Flags object.voidFlags. remove(Flags f)Remove all flags in the given Flags object from this Flags object.booleanFlags. retainAll(Flags f)Remove any flags not in the given Flags object.voidFolder. setFlags(int[] msgnums, Flags flag, boolean value)Set the specified flags on the messages whose message numbers are in the array.voidFolder. setFlags(int start, int end, Flags flag, boolean value)Set the specified flags on the messages numbered from start through end, both start and end inclusive.voidFolder. setFlags(Message[] msgs, Flags flag, boolean value)Set the specified flags on the messages specified in the array.abstract voidMessage. setFlags(Flags flag, boolean set)Set the specified flags on this message to the specified value.Constructors in jakarta.mail with parameters of type Flags Constructor Description Flags(Flags flags)Construct a Flags object initialized with the given flags. -
Uses of Flags in jakarta.mail.internet
Fields in jakarta.mail.internet declared as Flags Modifier and Type Field Description protected FlagsMimeMessage. flagsThe Flags for this message.Methods in jakarta.mail.internet that return Flags Modifier and Type Method Description FlagsMimeMessage. getFlags()Return aFlagsobject containing the flags for this message.Methods in jakarta.mail.internet with parameters of type Flags Modifier and Type Method Description voidMimeMessage. setFlags(Flags flag, boolean set)Set the flags for this message. -
Uses of Flags in jakarta.mail.search
Methods in jakarta.mail.search that return Flags Modifier and Type Method Description FlagsFlagTerm. getFlags()Return the Flags to test.Constructors in jakarta.mail.search with parameters of type Flags Constructor Description FlagTerm(Flags flags, boolean set)Constructor. -
Uses of Flags in org.eclipse.angus.mail.imap
Fields in org.eclipse.angus.mail.imap declared as Flags Modifier and Type Field Description protected FlagsIMAPFolder. availableFlagsprotected FlagsIMAPFolder. permanentFlagsMethods in org.eclipse.angus.mail.imap that return Flags Modifier and Type Method Description FlagsIMAPMessage. getFlags()Get the Flags for this message.FlagsIMAPFolder. getPermanentFlags()Return the permanent flags supported by the server.Methods in org.eclipse.angus.mail.imap with parameters of type Flags Modifier and Type Method Description voidIMAPFolder. setFlags(int[] msgnums, Flags flag, boolean value)Set the specified flags for the given array of message numbers.voidIMAPFolder. setFlags(int start, int end, Flags flag, boolean value)Set the specified flags for the given range of message numbers.voidIMAPFolder. setFlags(Message[] msgs, Flags flag, boolean value)Set the specified flags for the given array of messages.voidIMAPMessage. setFlags(Flags flag, boolean set)Set/Unset the given flags in this message.voidIMAPNestedMessage. setFlags(Flags flag, boolean set) -
Uses of Flags in org.eclipse.angus.mail.imap.protocol
Subclasses of Flags in org.eclipse.angus.mail.imap.protocol Modifier and Type Class Description classFLAGSThis classFields in org.eclipse.angus.mail.imap.protocol declared as Flags Modifier and Type Field Description FlagsMailboxInfo. availableFlagsThe available flags.FlagsMailboxInfo. permanentFlagsThe permanent flags.Methods in org.eclipse.angus.mail.imap.protocol that return Flags Modifier and Type Method Description FlagsIMAPProtocol. fetchFlags(int msgno)Fetch the FLAGS for the given message.Methods in org.eclipse.angus.mail.imap.protocol with parameters of type Flags Modifier and Type Method Description voidIMAPProtocol. append(java.lang.String mbox, Flags f, java.util.Date d, Literal data)APPEND Command.AppendUIDIMAPProtocol. appenduid(java.lang.String mbox, Flags f, java.util.Date d, Literal data)APPEND Command, return uid from APPENDUID response code.AppendUIDIMAPProtocol. appenduid(java.lang.String mbox, Flags f, java.util.Date d, Literal data, boolean uid)protected java.lang.StringIMAPProtocol. createFlagList(Flags flags)Creates an IMAP flag_list from the given Flags object.voidIMAPProtocol. storeFlags(int start, int end, Flags flags, boolean set)voidIMAPProtocol. storeFlags(int msg, Flags flags, boolean set)Set the specified flags on this message.voidIMAPProtocol. storeFlags(MessageSet[] msgsets, Flags flags, boolean set) -
Uses of Flags in org.eclipse.angus.mail.pop3
Methods in org.eclipse.angus.mail.pop3 that return Flags Modifier and Type Method Description FlagsDefaultFolder. getPermanentFlags()FlagsPOP3Folder. getPermanentFlags()Always returns an emptyFlagsobject because the POP3 protocol doesn't support any permanent flags.Methods in org.eclipse.angus.mail.pop3 with parameters of type Flags Modifier and Type Method Description voidPOP3Message. setFlags(Flags newFlags, boolean set)Set the specified flags on this message to the specified value.
-