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 UNIX
mbox 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.
|
Modifier and Type | Field | Description |
---|---|---|
protected Flags |
IMAPFolder.permanentFlags |
Modifier and Type | Method | Description |
---|---|---|
Flags |
IMAPMessage.getFlags() |
|
Flags |
IMAPFolder.getPermanentFlags() |
Returns the permanent flags for this folder.
|
Modifier and Type | Method | Description |
---|---|---|
void |
IMAPMessage.setFlags(Flags flag,
boolean set) |
Set the specified flags.
|
Modifier and Type | Method | Description |
---|---|---|
Flags |
MaildirFolder.getPermanentFlags() |
Returns the permanent flags for this folder.
|
Modifier and Type | Method | Description |
---|---|---|
void |
MaildirMessage.setFlags(Flags flag,
boolean set) |
Set the specified flags(reflected in the
info field). |
Modifier and Type | Method | Description |
---|---|---|
Flags |
MboxFolder.getPermanentFlags() |
Returns the permanent flags for this folder.
|
Modifier and Type | Method | Description |
---|---|---|
void |
MboxMessage.setFlags(Flags flag,
boolean set) |
Set the specified flags(reflected in the
Status header). |
Modifier and Type | Method | Description |
---|---|---|
Flags |
NNTPFolder.getPermanentFlags() |
Returns the flags supported by this folder.
|
Flags |
NNTPRootFolder.getPermanentFlags() |
Modifier and Type | Method | Description |
---|---|---|
void |
NNTPMessage.setFlags(Flags flag,
boolean set) |
Modifier and Type | Method | Description |
---|---|---|
Flags |
POP3Folder.getPermanentFlags() |
Returns the permanent flags for this folder.
|
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.
|
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.
|
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.
|
Constructor | Description |
---|---|
Flags(Flags flags) |
Construct a Flags object containing the given flags.
|
Modifier and Type | Field | Description |
---|---|---|
protected Flags |
MimeMessage.flags |
The message flags.
|
Modifier and Type | Method | Description |
---|---|---|
Flags |
MimeMessage.getFlags() |
Returns the flags for this message.
|
Modifier and Type | Method | Description |
---|---|---|
void |
MimeMessage.setFlags(Flags flag,
boolean set) |
Sets the flags for this message.
|
Modifier and Type | Field | Description |
---|---|---|
protected Flags |
FlagTerm.flags |
The flags to test.
|
Modifier and Type | Method | Description |
---|---|---|
Flags |
FlagTerm.getFlags() |
Returns the flags to test.
|
Constructor | Description |
---|---|
FlagTerm(Flags flags,
boolean set) |
Constructor.
|
© Copyright 2003, 2004 The Free Software Foundation, All rights reserved