Uses of Class
javax.mail.Flags

Packages that use Flags
javax.mail   
javax.mail.internet   
javax.mail.search   
 

Uses of Flags in javax.mail
 

Methods in javax.mail that return Flags
abstract  Flags Message.getFlags()
          Return a copy the flags associated with this message.
abstract  Flags Folder.getPermanentFlags()
          Get the flags supported by this folder.
 

Methods in javax.mail with parameters of type Flags
 void Flags.add(Flags flags)
          Set all system and user flags from the supplied Flags.
 boolean Flags.contains(Flags flags)
          See if all of the supplied Flags are set
 void Flags.remove(Flags flags)
          Unset all flags from the supplied instance.
abstract  void Message.setFlags(Flags flags, boolean set)
          Set the flags specified to the supplied value; flags not included in the supplied Flags parameter are not affected.
 void Folder.setFlags(int[] ids, Flags flags, boolean value)
          Set flags on a set of messages to the supplied value.
 void Folder.setFlags(int start, int end, Flags flags, boolean value)
          Set flags on a range of messages to the supplied value.
 void Folder.setFlags(Message[] messages, Flags flags, boolean value)
          Set flags on the messages to the supplied value; all messages must belong to this folder.
 

Constructors in javax.mail with parameters of type Flags
Flags(Flags flags)
          Construct a Flags instance with a same flags set.
 

Uses of Flags in javax.mail.internet
 

Fields in javax.mail.internet declared as Flags
protected  Flags MimeMessage.flags
          This message's flags.
 

Methods in javax.mail.internet that return Flags
 Flags MimeMessage.getFlags()
          Return a copy the flags associated with this message.
 

Methods in javax.mail.internet with parameters of type Flags
 void MimeMessage.setFlags(Flags flag, boolean set)
          Set or clear a flag value.
 

Uses of Flags in javax.mail.search
 

Fields in javax.mail.search declared as Flags
protected  Flags FlagTerm.flags
          The flags to test.
 

Methods in javax.mail.search that return Flags
 Flags FlagTerm.getFlags()
           
 

Constructors in javax.mail.search with parameters of type Flags
FlagTerm(Flags flags, boolean set)
           
 



Copyright © 2003-2009 The Apache Software Foundation. All Rights Reserved.