Uses of Interface
org.apache.james.mime4j.dom.Entity
Packages that use Entity
Package
Description
-
Uses of Entity in org.apache.james.mime4j.dom
Subinterfaces of Entity in org.apache.james.mime4j.domFields in org.apache.james.mime4j.dom declared as EntityMethods in org.apache.james.mime4j.dom that return EntityModifier and TypeMethodDescriptionBody.getParent()
Gets the parent of this body.Entity.getParent()
Gets the parent entity of this entity.SingleBody.getParent()
Multipart.removeBodyPart
(int index) Removes the body part at the specified position in the list of body parts.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 EntityMethods in org.apache.james.mime4j.dom with parameters of type EntityModifier and TypeMethodDescriptionvoid
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.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
Sets the parent of this body.void
Sets the parent entity of this entity.void
void
MessageWriter.writeEntity
(Entity entity, OutputStream out) Method parameters in org.apache.james.mime4j.dom with type arguments of type EntityModifier and TypeMethodDescriptionvoid
Multipart.setBodyParts
(List<Entity> bodyParts) Sets the list of body parts. -
Uses of Entity in org.apache.james.mime4j.internal
Fields in org.apache.james.mime4j.internal declared as EntityConstructors in org.apache.james.mime4j.internal with parameters of type EntityModifierConstructorDescriptionParserStreamContentHandler
(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 EntityModifier and TypeClassDescriptionclass
Abstract MIME entity.class
Abstract MIME message.class
A MIME body part (as defined in RFC 2045).class
Default implementation ofMessage
.Fields in org.apache.james.mime4j.message declared as EntityModifier and TypeFieldDescriptionprivate Entity
AbstractEntity.parent
private Entity
AbstractMultipart.parent
Fields in org.apache.james.mime4j.message with type parameters of type EntityMethods in org.apache.james.mime4j.message that return EntityModifier and TypeMethodDescriptionAbstractEntity.getParent()
Gets the parent entity of this entity.AbstractMultipart.getParent()
AbstractMultipart.removeBodyPart
(int index) Removes the body part at the specified position in the list of body parts.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 EntityModifier and TypeMethodDescriptionAbstractMultipart.getBodyParts()
Gets the list of body parts.MultipartBuilder.getBodyParts()
Gets the list of body parts.Methods in org.apache.james.mime4j.message with parameters of type EntityModifier and TypeMethodDescriptionvoid
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.addBodyPart
(Entity bodyPart) Adds a body part to the end of the list of body parts.MultipartBuilder.addBodyPart
(Entity bodyPart, int index) Inserts a body part at the specified position in the list of body parts.Creates a newBodyPart
from the specifiedEntity
.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.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
Sets the parent entity of this entity.void
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 EntityModifier and TypeMethodDescriptionvoid
AbstractMultipart.setBodyParts
(List<Entity> bodyParts) Sets the list of body parts. -
Uses of Entity in org.apache.james.mime4j.samples.tree
Methods in org.apache.james.mime4j.samples.tree with parameters of type EntityModifier and TypeMethodDescriptionprivate DefaultMutableTreeNode
MessageTree.createNode
(Entity entity) Creates the tree nodes given a MIME entity (either a Message or a BodyPart).