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 interfaceMessageAn MIME message (as defined in RFC 2045).Methods in org.apache.james.mime4j.dom that return Entity Modifier and Type Method Description EntityBody. getParent()Gets the parent of this body.EntityEntity. getParent()Gets the parent entity of this entity.EntitySingleBody. getParent()EntityMultipart. removeBodyPart(int index)Removes the body part at the specified position in the list of body parts.EntityMultipart. 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 voidMultipart. addBodyPart(Entity bodyPart)Adds a body part to the end of the list of body parts.voidMultipart. addBodyPart(Entity bodyPart, int index)Inserts a body part at the specified position in the list of body parts.EntityMultipart. replaceBodyPart(Entity bodyPart, int index)Replaces the body part at the specified position in the list of body parts with the specified body part.voidBody. setParent(Entity parent)Sets the parent of this body.voidEntity. setParent(Entity parent)Sets the parent entity of this entity.voidSingleBody. setParent(Entity parent)voidMessageWriter. writeEntity(Entity entity, OutputStream out)Method parameters in org.apache.james.mime4j.dom with type arguments of type Entity Modifier and Type Method Description voidMultipart. 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 classAbstractEntityAbstract MIME entity.classAbstractMessageAbstract MIME message.classBodyPartA MIME body part (as defined in RFC 2045).classMessageImplDefault implementation ofMessage.Fields in org.apache.james.mime4j.message with type parameters of type Entity Modifier and Type Field Description protected List<Entity>AbstractMultipart. bodyPartsMethods in org.apache.james.mime4j.message that return Entity Modifier and Type Method Description EntityAbstractEntity. getParent()Gets the parent entity of this entity.EntityAbstractMultipart. getParent()EntityAbstractMultipart. removeBodyPart(int index)Removes the body part at the specified position in the list of body parts.EntityAbstractMultipart. 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 voidAbstractMultipart. addBodyPart(Entity bodyPart)Adds a body part to the end of the list of body parts.voidAbstractMultipart. addBodyPart(Entity bodyPart, int index)Inserts a body part at the specified position in the list of body parts.MultipartBuilderMultipartBuilder. addBodyPart(Entity bodyPart)Adds a body part to the end of the list of body parts.MultipartBuilderMultipartBuilder. addBodyPart(Entity bodyPart, int index)Inserts a body part at the specified position in the list of body parts.BodyPartDefaultMessageBuilder. copy(Entity other)Creates a newBodyPartfrom the specifiedEntity.EntityAbstractMultipart. replaceBodyPart(Entity bodyPart, int index)Replaces the body part at the specified position in the list of body parts with the specified body part.MultipartBuilderMultipartBuilder. replaceBodyPart(Entity bodyPart, int index)Replaces the body part at the specified position in the list of body parts with the specified body part.voidAbstractEntity. setParent(Entity parent)Sets the parent entity of this entity.voidAbstractMultipart. setParent(Entity parent)voidDefaultMessageWriter. writeEntity(Entity entity, OutputStream out)Write the specifiedEntityto the specifiedOutputStream.Method parameters in org.apache.james.mime4j.message with type arguments of type Entity Modifier and Type Method Description voidAbstractMultipart. setBodyParts(List<Entity> bodyParts)Sets the list of body parts.
-