Package | Description |
---|---|
javax.mail |
The JavaMailTM API
provides classes that model a mail system.
|
javax.mail.event |
Listeners and events for the JavaMail API.
|
javax.mail.internet |
Classes specific to Internet mail systems.
|
Modifier and Type | Field and Description |
---|---|
protected Folder |
Message.folder
The containing folder, if this message is obtained from a folder
|
Modifier and Type | Method and Description |
---|---|
abstract Folder |
Store.getDefaultFolder ()
Returns a Folder object that represents the 'root' of
the default namespace presented to the user by the Store.
|
Folder |
ReadOnlyFolderException.getFolder ()
Returns the dead Folder object.
|
Folder |
Message.getFolder ()
Get the folder from which this message was obtained.
|
Folder |
FolderNotFoundException.getFolder ()
Returns the offending Folder object.
|
Folder |
FolderClosedException.getFolder ()
Returns the dead Folder object
|
abstract Folder |
Store.getFolder (String name)
Return the Folder object corresponding to the given name.
|
abstract Folder |
Folder.getFolder (String name)
Return the Folder object corresponding to the given name.
|
abstract Folder |
Store.getFolder (URLName url)
Return a closed Folder object, corresponding to the given
URLName.
|
Folder |
Session.getFolder (URLName url)
Get a closed Folder object for the given URLName.
|
abstract Folder |
Folder.getParent ()
Returns the parent folder of this folder.
|
Folder[] |
Store.getPersonalNamespaces ()
Return a set of folders representing the personal namespaces
for the current user.
|
Folder[] |
Store.getSharedNamespaces ()
Return a set of folders representing the shared namespaces.
|
Folder[] |
Store.getUserNamespaces (String user)
Return a set of folders representing the namespaces for
user . |
Folder[] |
Folder.list ()
Convenience method that returns the list of folders under this
Folder.
|
abstract Folder[] |
Folder.list (String pattern)
Returns a list of Folders belonging to this Folder's namespace
that match the specified pattern.
|
Folder[] |
Folder.listSubscribed ()
Convenience method that returns the list of subscribed folders
under this Folder.
|
Folder[] |
Folder.listSubscribed (String pattern)
Returns a list of subscribed Folders belonging to this Folder's
namespace that match the specified pattern.
|
Modifier and Type | Method and Description |
---|---|
void |
Folder.copyMessages (Message[] msgs,
Folder folder)
Copy the specified Messages from this Folder into another
Folder.
|
protected void |
Store.notifyFolderListeners (int type,
Folder folder)
Notify all FolderListeners.
|
protected void |
Folder.notifyFolderRenamedListeners (Folder folder)
Notify all FolderListeners registered on this Folder and
this folder's Store about the renaming of this folder.
|
protected void |
Store.notifyFolderRenamedListeners (Folder oldF,
Folder newF)
Notify all FolderListeners about the renaming of a folder.
|
abstract boolean |
Folder.renameTo (Folder f)
Rename this Folder.
|
Constructor and Description |
---|
FolderClosedException (Folder folder)
Constructs a FolderClosedException.
|
FolderClosedException (Folder folder,
String message)
Constructs a FolderClosedException with the specified
detail message.
|
FolderClosedException (Folder folder,
String message,
Exception e)
Constructs a FolderClosedException with the specified
detail message and embedded exception.
|
FolderNotFoundException (Folder folder)
Constructs a FolderNotFoundException.
|
FolderNotFoundException (Folder folder,
String s)
Constructs a FolderNotFoundException with the specified
detail message.
|
FolderNotFoundException (Folder folder,
String s,
Exception e)
Constructs a FolderNotFoundException with the specified
detail message and embedded exception.
|
FolderNotFoundException (String s,
Folder folder)
Constructs a FolderNotFoundException with the specified detail message
and the specified folder.
|
Message (Folder folder,
int msgnum)
Constructor that takes a Folder and a message number.
|
ReadOnlyFolderException (Folder folder)
Constructs a ReadOnlyFolderException with the specified
folder and no detail message.
|
ReadOnlyFolderException (Folder folder,
String message)
Constructs a ReadOnlyFolderException with the specified
detail message.
|
ReadOnlyFolderException (Folder folder,
String message,
Exception e)
Constructs a ReadOnlyFolderException with the specified
detail message and embedded exception.
|
Modifier and Type | Field and Description |
---|---|
protected Folder |
FolderEvent.folder
The folder the event occurred on.
|
protected Folder |
FolderEvent.newFolder
The folder that represents the new name, in case of a RENAMED event.
|
Modifier and Type | Method and Description |
---|---|
Folder |
FolderEvent.getFolder ()
Return the affected folder.
|
Folder |
FolderEvent.getNewFolder ()
If this event indicates that a folder is renamed, (i.e, the event type
is RENAMED), then this method returns the Folder object representing the
new name.
|
Constructor and Description |
---|
FolderEvent (Object source,
Folder oldFolder,
Folder newFolder,
int type)
Constructor.
|
FolderEvent (Object source,
Folder folder,
int type)
Constructor.
|
MessageCountEvent (Folder folder,
int type,
boolean removed,
Message[] msgs)
Constructor.
|
Constructor and Description |
---|
MimeMessage (Folder folder,
InputStream is,
int msgnum)
Constructs a MimeMessage by reading and parsing the data from the
specified MIME InputStream.
|
MimeMessage (Folder folder,
int msgnum)
Constructs an empty MimeMessage object with the given Folder
and message number.
|
MimeMessage (Folder folder,
InternetHeaders headers,
byte[] content,
int msgnum)
Constructs a MimeMessage from the given InternetHeaders object
and content.
|
Copyright © 1996-2015, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.