Package org.apache.commons.net.imap
Enum IMAPClient.FETCH_ITEM_NAMES
- All Implemented Interfaces:
- Serializable,- Comparable<IMAPClient.FETCH_ITEM_NAMES>
- Enclosing class:
- IMAPClient
The message data item names for the FETCH command defined in RFC 3501.
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionMacro equivalent to: (FLAGS INTERNALDATE RFC822.SIZE ENVELOPE).Non-extensible form of BODYSTRUCTURE or the text of a particular body section.The [MIME-IMB] body structure of the message.The envelope structure of the message.Macro equivalent to: (FLAGS INTERNALDATE RFC822.SIZE).The flags that are set for this message.Macro equivalent to: (FLAGS INTERNALDATE RFC822.SIZE ENVELOPE BODY).The internal date of the message.A prefix for RFC-822 item names.The unique identifier for the message.
- 
Method SummaryModifier and TypeMethodDescriptionstatic IMAPClient.FETCH_ITEM_NAMESReturns the enum constant of this type with the specified name.static IMAPClient.FETCH_ITEM_NAMES[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
ALLMacro equivalent to: (FLAGS INTERNALDATE RFC822.SIZE ENVELOPE).
- 
FASTMacro equivalent to: (FLAGS INTERNALDATE RFC822.SIZE).
- 
FULLMacro equivalent to: (FLAGS INTERNALDATE RFC822.SIZE ENVELOPE BODY).
- 
BODYNon-extensible form of BODYSTRUCTURE or the text of a particular body section.
- 
BODYSTRUCTUREThe [MIME-IMB] body structure of the message.
- 
ENVELOPEThe envelope structure of the message.
- 
FLAGSThe flags that are set for this message.
- 
INTERNALDATEThe internal date of the message.
- 
RFC822A prefix for RFC-822 item names.
- 
UIDThe unique identifier for the message.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
 
-