public class RawMessage
extends java.lang.Object
implements java.io.Serializable
Represents the raw data of the message.
| コンストラクタと説明 |
|---|
RawMessage()
Default constructor for a new RawMessage object.
|
RawMessage(java.nio.ByteBuffer data)
Constructs a new RawMessage object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.nio.ByteBuffer |
getData()
The raw data of the message.
|
int |
hashCode() |
void |
setData(java.nio.ByteBuffer data)
The raw data of the message.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
RawMessage |
withData(java.nio.ByteBuffer data)
The raw data of the message.
|
public RawMessage()
public RawMessage(java.nio.ByteBuffer data)
data - The raw data of the message. The client must ensure that
the message format complies with Internet email standards regarding
email header fields, MIME types, MIME encoding, and base64 encoding
(if necessary). For more information, go to theAmazon SES Developer Guide.
public java.nio.ByteBuffer getData()
For more information, go to theAmazon SES Developer Guide.
For more information, go to theAmazon SES Developer Guide.
public void setData(java.nio.ByteBuffer data)
For more information, go to theAmazon SES Developer Guide.
data - The raw data of the message. The client must ensure that the message
format complies with Internet email standards regarding email header
fields, MIME types, MIME encoding, and base64 encoding (if necessary).
For more information, go to theAmazon SES Developer Guide.
public RawMessage withData(java.nio.ByteBuffer data)
For more information, go to theAmazon SES Developer Guide.
Returns a reference to this object so that method calls can be chained together.
data - The raw data of the message. The client must ensure that the message
format complies with Internet email standards regarding email header
fields, MIME types, MIME encoding, and base64 encoding (if necessary).
For more information, go to theAmazon SES Developer Guide.
public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object