public static class

MimeMessage.RecipientType

extends Message.RecipientType
java.lang.Object
   ↳ com.google.code.javax.mail.Message.RecipientType
     ↳ com.google.code.javax.mail.internet.MimeMessage.RecipientType

Class Overview

This inner class extends the javax.mail.Message.RecipientType class to add additional RecipientTypes. The one additional RecipientType currently defined here is NEWSGROUPS.

See Also
  • javax.mail.Message.RecipientType

Summary

Constants
long serialVersionUID
[Expand]
Inherited Constants
From class com.google.code.javax.mail.Message.RecipientType
Fields
public static final MimeMessage.RecipientType NEWSGROUPS The "Newsgroup" (Usenet news) recipients.
[Expand]
Inherited Fields
From class com.google.code.javax.mail.Message.RecipientType
Protected Constructors
MimeMessage.RecipientType(String type)
Protected Methods
Object readResolve()
When deserializing a RecipientType, we need to make sure to return only one of the known static final instances defined in this class.
[Expand]
Inherited Methods
From class com.google.code.javax.mail.Message.RecipientType
From class java.lang.Object

Constants

private static final long serialVersionUID

Constant Value: -5468290701714395543 (0xb41cba943bbdee69)

Fields

public static final MimeMessage.RecipientType NEWSGROUPS

The "Newsgroup" (Usenet news) recipients.

Protected Constructors

protected MimeMessage.RecipientType (String type)

Parameters
type

Protected Methods

protected Object readResolve ()

When deserializing a RecipientType, we need to make sure to return only one of the known static final instances defined in this class. Subclasses must implement their own readResolve method that checks for their known instances before calling this super method.

Throws
ObjectStreamException