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 TypeMethodDescriptionvoidMultipart.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.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.voidSets the parent of this body.voidSets the parent entity of this entity.voidvoidMessageWriter.writeEntity(Entity entity, OutputStream out) Method parameters in org.apache.james.mime4j.dom with type arguments of type EntityModifier and TypeMethodDescriptionvoidMultipart.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 TypeClassDescriptionclassAbstract MIME entity.classAbstract MIME message.classA MIME body part (as defined in RFC 2045).classDefault implementation ofMessage.Fields in org.apache.james.mime4j.message declared as EntityModifier and TypeFieldDescriptionprivate EntityAbstractEntity.parentprivate EntityAbstractMultipart.parentFields 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 TypeMethodDescriptionvoidAbstractMultipart.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.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 newBodyPartfrom 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.voidSets the parent entity of this entity.voidvoidDefaultMessageWriter.writeEntity(Entity entity, OutputStream out) Write the specifiedEntityto the specifiedOutputStream.Method parameters in org.apache.james.mime4j.message with type arguments of type EntityModifier and TypeMethodDescriptionvoidAbstractMultipart.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 DefaultMutableTreeNodeMessageTree.createNode(Entity entity) Creates the tree nodes given a MIME entity (either a Message or a BodyPart).