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
Subclasses of TextBody in org.apache.james.mime4j.message Modifier and Type Class Description (package private) static class
BasicBodyFactory.StringBody1
(package private) static class
BasicBodyFactory.StringBody2
(package private) static class
BasicBodyFactory.StringBody3
Methods in org.apache.james.mime4j.message that return TextBody Modifier and Type Method Description TextBody
SingleBodyBuilder. buildText()
TextBody
BasicBodyFactory. textBody(byte[] content, java.nio.charset.Charset charset)
TextBody
BasicBodyFactory. textBody(java.io.InputStream content, java.lang.String mimeCharset)
TextBody
BasicBodyFactory. textBody(java.lang.String text)
TextBody
BasicBodyFactory. textBody(java.lang.String text, java.lang.String mimeCharset)
TextBody
BasicBodyFactory. textBody(java.lang.String text, java.nio.charset.Charset charset)
TextBody
BodyFactory. textBody(java.io.InputStream is, java.lang.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
Subclasses of TextBody in org.apache.james.mime4j.storage Modifier and Type Class Description (package private) class
StorageTextBody
Text body backed by aStorage
.(package private) class
StringTextBody
Text body backed by aString
.Methods in org.apache.james.mime4j.storage that return TextBody Modifier and Type Method Description TextBody
StorageBodyFactory. textBody(java.io.InputStream is)
Creates aTextBody
that holds the content of the given input stream.TextBody
StorageBodyFactory. textBody(java.io.InputStream is, java.lang.String mimeCharset)
Creates aTextBody
that holds the content of the given input stream.TextBody
StorageBodyFactory. textBody(java.lang.String text)
Creates aTextBody
that holds the content of the given string.TextBody
StorageBodyFactory. textBody(java.lang.String text, java.lang.String mimeCharset)
Creates aTextBody
that holds the content of the given string.TextBody
StorageBodyFactory. textBody(Storage storage)
TextBody
StorageBodyFactory. textBody(Storage storage, java.lang.String mimeCharset)
-