Uses of Interface
org.apache.james.mime4j.dom.Entity
-
Packages that use Entity Package Description org.apache.james.mime4j.dom org.apache.james.mime4j.internal org.apache.james.mime4j.message -
-
Uses of Entity in org.apache.james.mime4j.dom
Subinterfaces of Entity in org.apache.james.mime4j.dom Modifier and Type Interface Description interface
Message
An MIME message (as defined in RFC 2045).Methods in org.apache.james.mime4j.dom that return Entity Modifier and Type Method Description Entity
Body. getParent()
Gets the parent of this body.Entity
Entity. getParent()
Gets the parent entity of this entity.Entity
SingleBody. getParent()
Entity
Multipart. removeBodyPart(int index)
Removes the body part at the specified position in the list of body parts.Entity
Multipart. replaceBodyPart(Entity bodyPart, int index)
Replaces the body part at the specified position in the list of body parts with the specified body part.Methods in org.apache.james.mime4j.dom that return types with arguments of type Entity Modifier and Type Method Description List<Entity>
Multipart. getBodyParts()
Gets the list of body parts.Methods in org.apache.james.mime4j.dom with parameters of type Entity Modifier and Type Method Description void
Multipart. addBodyPart(Entity bodyPart)
Adds a body part to the end of the list of body parts.void
Multipart. addBodyPart(Entity bodyPart, int index)
Inserts a body part at the specified position in the list of body parts.Entity
Multipart. replaceBodyPart(Entity bodyPart, int index)
Replaces the body part at the specified position in the list of body parts with the specified body part.void
Body. setParent(Entity parent)
Sets the parent of this body.void
Entity. setParent(Entity parent)
Sets the parent entity of this entity.void
SingleBody. setParent(Entity parent)
void
MessageWriter. writeEntity(Entity entity, OutputStream out)
Method parameters in org.apache.james.mime4j.dom with type arguments of type Entity Modifier and Type Method Description void
Multipart. setBodyParts(List<Entity> bodyParts)
Sets the list of body parts. -
Uses of Entity in org.apache.james.mime4j.internal
Constructors in org.apache.james.mime4j.internal with parameters of type Entity Constructor Description ParserStreamContentHandler(Entity entity, BodyFactory bodyFactory)
ParserStreamContentHandler(Entity entity, MessageImplFactory messageImplFactory, BodyFactory bodyFactory)
-
Uses of Entity in org.apache.james.mime4j.message
Classes in org.apache.james.mime4j.message that implement Entity Modifier and Type Class Description class
AbstractEntity
Abstract MIME entity.class
AbstractMessage
Abstract MIME message.class
BodyPart
A MIME body part (as defined in RFC 2045).class
MessageImpl
Default implementation ofMessage
.Fields in org.apache.james.mime4j.message with type parameters of type Entity Modifier and Type Field Description protected List<Entity>
AbstractMultipart. bodyParts
Methods in org.apache.james.mime4j.message that return Entity Modifier and Type Method Description Entity
AbstractEntity. getParent()
Gets the parent entity of this entity.Entity
AbstractMultipart. getParent()
Entity
AbstractMultipart. removeBodyPart(int index)
Removes the body part at the specified position in the list of body parts.Entity
AbstractMultipart. replaceBodyPart(Entity bodyPart, int index)
Replaces the body part at the specified position in the list of body parts with the specified body part.Methods in org.apache.james.mime4j.message that return types with arguments of type Entity Modifier and Type Method Description List<Entity>
AbstractMultipart. getBodyParts()
Gets the list of body parts.List<Entity>
MultipartBuilder. getBodyParts()
Gets the list of body parts.Methods in org.apache.james.mime4j.message with parameters of type Entity Modifier and Type Method Description void
AbstractMultipart. addBodyPart(Entity bodyPart)
Adds a body part to the end of the list of body parts.void
AbstractMultipart. addBodyPart(Entity bodyPart, int index)
Inserts a body part at the specified position in the list of body parts.MultipartBuilder
MultipartBuilder. addBodyPart(Entity bodyPart)
Adds a body part to the end of the list of body parts.MultipartBuilder
MultipartBuilder. addBodyPart(Entity bodyPart, int index)
Inserts a body part at the specified position in the list of body parts.BodyPart
DefaultMessageBuilder. copy(Entity other)
Creates a newBodyPart
from the specifiedEntity
.Entity
AbstractMultipart. replaceBodyPart(Entity bodyPart, int index)
Replaces the body part at the specified position in the list of body parts with the specified body part.MultipartBuilder
MultipartBuilder. replaceBodyPart(Entity bodyPart, int index)
Replaces the body part at the specified position in the list of body parts with the specified body part.void
AbstractEntity. setParent(Entity parent)
Sets the parent entity of this entity.void
AbstractMultipart. setParent(Entity parent)
void
DefaultMessageWriter. writeEntity(Entity entity, OutputStream out)
Write the specifiedEntity
to the specifiedOutputStream
.Method parameters in org.apache.james.mime4j.message with type arguments of type Entity Modifier and Type Method Description void
AbstractMultipart. setBodyParts(List<Entity> bodyParts)
Sets the list of body parts.
-