Uses of Class
org.apache.james.mime4j.dom.TextBody
-
Packages that use TextBody Package Description org.apache.james.mime4j.dom org.apache.james.mime4j.internal org.apache.james.mime4j.message org.apache.james.mime4j.storage -
-
Uses of TextBody in org.apache.james.mime4j.dom
Methods in org.apache.james.mime4j.dom with parameters of type TextBody Modifier and Type Method Description Message.Builder
Message.Builder. setBody(TextBody textBody)
-
Uses of TextBody in org.apache.james.mime4j.internal
Methods in org.apache.james.mime4j.internal with parameters of type TextBody Modifier and Type Method Description AbstractEntityBuilder
AbstractEntityBuilder. setBody(TextBody textBody)
Sets body of this message. -
Uses of TextBody in org.apache.james.mime4j.message
Methods in org.apache.james.mime4j.message that return TextBody Modifier and Type Method Description TextBody
SingleBodyBuilder. buildText()
TextBody
BasicBodyFactory. textBody(byte[] content, Charset charset)
TextBody
BasicBodyFactory. textBody(InputStream content, String mimeCharset)
TextBody
BasicBodyFactory. textBody(String text)
TextBody
BasicBodyFactory. textBody(String text, String mimeCharset)
TextBody
BasicBodyFactory. textBody(String text, Charset charset)
TextBody
BodyFactory. textBody(InputStream is, String mimeCharset)
Creates aTextBody
that holds the content of the given input stream.Methods in org.apache.james.mime4j.message with parameters of type TextBody Modifier and Type Method Description BodyPartBuilder
BodyPartBuilder. setBody(TextBody textBody)
MessageBuilder
MessageBuilder. setBody(TextBody textBody)
Deprecated. -
Uses of TextBody in org.apache.james.mime4j.storage
Methods in org.apache.james.mime4j.storage that return TextBody Modifier and Type Method Description TextBody
StorageBodyFactory. textBody(InputStream is)
Creates aTextBody
that holds the content of the given input stream.TextBody
StorageBodyFactory. textBody(InputStream is, String mimeCharset)
Creates aTextBody
that holds the content of the given input stream.TextBody
StorageBodyFactory. textBody(String text)
Creates aTextBody
that holds the content of the given string.TextBody
StorageBodyFactory. textBody(String text, String mimeCharset)
Creates aTextBody
that holds the content of the given string.TextBody
StorageBodyFactory. textBody(Storage storage)
TextBody
StorageBodyFactory. textBody(Storage storage, String mimeCharset)
-