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()
          Returns a Flags object containing the flags for this message.
abstract  Flags Folder.getPermanentFlags()
          Get the permanent flags supported by this Folder.
 

Methods in javax.mail with parameters of type Flags
abstract  void Message.setFlags(Flags flag, boolean set)
          Set the specified flags on this message to the specified value.
 void Folder.setFlags(Message[] msgs, Flags flag, boolean value)
          Set the specified flags on the messages specified in the array.
 void Folder.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.
 void Folder.setFlags(int[] msgnums, Flags flag, boolean value)
          Set the specified flags on the messages whose message numbers are in the array.
 void Flags.add(Flags f)
          Add all the flags in the given Flags object to this Flags object.
 void Flags.remove(Flags f)
          Remove all flags in the given Flags object from this Flags object.
 boolean Flags.contains(Flags f)
          Check whether all the flags in the specified Flags object are present in this Flags object.
 

Constructors in javax.mail with parameters of type Flags
Flags.Flags(Flags flags)
          Construct a Flags object initialized with the given flags.
 

Uses of Flags in javax.mail.internet
 

Fields in javax.mail.internet declared as Flags
protected  Flags MimeMessage.flags
          The Flags for this message.
 

Methods in javax.mail.internet that return Flags
 Flags MimeMessage.getFlags()
          Return a Flags object containing the flags for this message.
 

Methods in javax.mail.internet with parameters of type Flags
 void MimeMessage.setFlags(Flags flag, boolean set)
          Set the flags for this message.
 

Uses of Flags in javax.mail.search
 

Fields in javax.mail.search declared as Flags
protected  Flags FlagTerm.flags
          Flags object containing the flags to test.
 

Methods in javax.mail.search that return Flags
 Flags FlagTerm.getFlags()
          Return the Flags to test.
 

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