This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.


javax.mail
class FetchProfile.Item

javax.mail.FetchProfile.Item
Direct Known Subclasses:
IMAPFolder.FetchProfileItem, UIDFolder.FetchProfileItem
Enclosing class:
FetchProfile

public static class FetchProfile.Item
extends Object

This inner class is the base class of all items that can be requested in a FetchProfile. The items currently defined here are ENVELOPE, CONTENT_INFO and FLAGS. The UIDFolder interface defines the UID Item as well.

Note that this class only has a protected constructor, therby restricting new Item types to either this class or subclasses. This effectively implements a enumeration of allowed Item types.


Field Summary
static FetchProfile.Item CONTENT_INFO
          This item is for fetching information about the content of the message.
static FetchProfile.Item ENVELOPE
          This is the Envelope item.
static FetchProfile.Item FLAGS
          This is the Flags item.
 
Constructor Summary
protected

          Constructor for an item.
 

Field Detail

CONTENT_INFO

public static final FetchProfile.Item CONTENT_INFO
This item is for fetching information about the content of the message.

This includes all the attributes that describe the content of the message. Implementations should include the following attributes: ContentType, ContentDisposition, ContentDescription, Size and LineCount. Other items may be included as well.


ENVELOPE

public static final FetchProfile.Item ENVELOPE
This is the Envelope item.

The Envelope is an aggregration of the common attributes of a Message. Implementations should include the following attributes: From, To, Cc, Bcc, ReplyTo, Subject and Date. More items may be included as well.

For implementations of the IMAP4 protocol (RFC 2060), the Envelope should include the ENVELOPE data item. More items may be included too.


FLAGS

public static final FetchProfile.Item FLAGS
This is the Flags item.
Constructor Detail

FetchProfile.Item

protected FetchProfile.Item(String name)
Constructor for an item. The name is used only for debugging.

Parameters:
name


This documentation differs from the official API. Jadeite adds extra features to the API including: variable font sizes, constructions examples, placeholders for classes and methods, and auto-generated “See Also” links. Additionally it is missing some items found in standard Javadoc documentation, including: generics type information, “Deprecated” tags and comments, “See Also” links, along with other minor differences. Please send any questions or feedback to bam@cs.cmu.edu.
This page displays the Jadeite version of the documention. The official Sun™ documentation can be found here at http://java.sun.com/products/javamail/javadocs/index.html.