Uses of Interface
org.apache.james.mime4j.stream.Field

Packages that use Field
org.apache.james.mime4j.dom   
org.apache.james.mime4j.dom.field   
org.apache.james.mime4j.field   
org.apache.james.mime4j.message   
org.apache.james.mime4j.parser   
org.apache.james.mime4j.stream   
 

Uses of Field in org.apache.james.mime4j.dom
 

Methods in org.apache.james.mime4j.dom that return Field
 Field Header.getField(java.lang.String name)
          Gets a Field given a field name.
 

Methods in org.apache.james.mime4j.dom that return types with arguments of type Field
 java.util.List<Field> Header.getFields()
          Gets the fields of this header.
 java.util.List<Field> Header.getFields(java.lang.String name)
          Gets all Fields having the specified field name.
 java.util.Iterator<Field> Header.iterator()
          Returns an iterator over the list of fields of this header.
 

Methods in org.apache.james.mime4j.dom with parameters of type Field
 void Header.addField(Field field)
          Adds a field to the end of the list of fields.
 T FieldParser.parse(Field rawField, DecodeMonitor monitor)
          Parses raw (unstructured) field and converts it into a structured field.
 void Header.setField(Field field)
          Sets or replaces a field.
 void MessageWriter.writeField(Field field, java.io.OutputStream out)
           
 

Uses of Field in org.apache.james.mime4j.dom.field
 

Subinterfaces of Field in org.apache.james.mime4j.dom.field
 interface AddressListField
           
 interface ContentDescriptionField
           
 interface ContentDispositionField
           
 interface ContentIdField
           
 interface ContentLanguageField
           
 interface ContentLengthField
           
 interface ContentLocationField
           
 interface ContentMD5Field
           
 interface ContentTransferEncodingField
           
 interface ContentTypeField
           
 interface DateTimeField
           
 interface MailboxField
           
 interface MailboxListField
           
 interface MimeVersionField
           
 interface ParsedField
          A structured field that has been processed by a parsing routine.
 interface UnstructuredField
           
 

Uses of Field in org.apache.james.mime4j.field
 

Classes in org.apache.james.mime4j.field that implement Field
 class AbstractField
          The base class of all field classes.
 class AddressListFieldImpl
          Address list field such as To or Reply-To.
 class AddressListFieldLenientImpl
          Address list field such as To or Reply-To.
 class ContentDescriptionFieldImpl
          Represents a Content-Description field.
 class ContentDispositionFieldImpl
          Represents a Content-Disposition field.
 class ContentDispositionFieldLenientImpl
          Represents a Content-Disposition field.
 class ContentIdFieldImpl
          Represents a Content-Transfer-Encoding field.
 class ContentLanguageFieldImpl
          Represents a Content-Transfer-Encoding field.
 class ContentLanguageFieldLenientImpl
          Represents a Content-Transfer-Encoding field.
 class ContentLengthFieldImpl
          Represents a Content-Length field.
 class ContentLocationFieldImpl
          Represents a Content-Location field.
 class ContentLocationFieldLenientImpl
          Represents a Content-Location field.
 class ContentMD5FieldImpl
          Represents a Content-MD5 field.
 class ContentTransferEncodingFieldImpl
          Represents a Content-Transfer-Encoding field.
 class ContentTypeFieldImpl
          Represents a Content-Type field.
 class ContentTypeFieldLenientImpl
          Represents a Content-Type field.
 class DateTimeFieldImpl
          Date-time field such as Date or Resent-Date.
 class DateTimeFieldLenientImpl
          Date-time field such as Date or Resent-Date.
 class MailboxFieldImpl
          Mailbox field such as Sender or Resent-Sender.
 class MailboxFieldLenientImpl
          Mailbox field such as Sender or Resent-Sender.
 class MailboxListFieldImpl
          Mailbox-list field such as From or Resent-From.
 class MailboxListFieldLenientImpl
          Mailbox-list field such as From or Resent-From.
 class MimeVersionFieldImpl
          Represents a MIME-Version field.
 class MimeVersionFieldLenientImpl
          Represents a MIME-Version field.
 class UnstructuredFieldImpl
          Simple unstructured field such as Subject.
 

Fields in org.apache.james.mime4j.field declared as Field
protected  Field AbstractField.rawField
           
 

Methods in org.apache.james.mime4j.field with parameters of type Field
 ParsedField DelegatingFieldParser.parse(Field rawField, DecodeMonitor monitor)
           
 

Constructors in org.apache.james.mime4j.field with parameters of type Field
AbstractField(Field rawField, DecodeMonitor monitor)
           
 

Uses of Field in org.apache.james.mime4j.message
 

Methods in org.apache.james.mime4j.message that return Field
 Field DefaultBodyDescriptorBuilder.addField(RawField rawfield)
           
 Field AbstractHeader.getField(java.lang.String name)
          Gets a Field given a field name.
 

Methods in org.apache.james.mime4j.message that return types with arguments of type Field
 java.util.List<Field> AbstractHeader.getFields()
          Gets the fields of this header.
 java.util.List<Field> AbstractHeader.getFields(java.lang.String name)
          Gets all Fields having the specified field name.
 java.util.Iterator<Field> AbstractHeader.iterator()
          Returns an iterator over the list of fields of this header.
 

Methods in org.apache.james.mime4j.message with parameters of type Field
 void AbstractHeader.addField(Field field)
          Adds a field to the end of the list of fields.
 void SimpleContentHandler.field(Field field)
           
 void AbstractHeader.setField(Field field)
          Sets or replaces a field.
 void DefaultMessageWriter.writeField(Field field, java.io.OutputStream out)
          Write the specified Field to the specified OutputStream.
 

Uses of Field in org.apache.james.mime4j.parser
 

Methods in org.apache.james.mime4j.parser with parameters of type Field
 void ContentHandler.field(Field rawField)
          Called for each field of a header.
 void AbstractContentHandler.field(Field field)
           
 

Uses of Field in org.apache.james.mime4j.stream
 

Classes in org.apache.james.mime4j.stream that implement Field
 class RawField
          Raw (unstructured) MIME field.
 

Methods in org.apache.james.mime4j.stream that return Field
 Field BodyDescriptorBuilder.addField(RawField field)
          Updates builder's internal state by adding a new field.
 Field MimeTokenStream.getField()
          This method is valid, if MimeTokenStream.getState() returns EntityState.T_FIELD.
 Field EntityStateMachine.getField()
          Returns current header field.
 Field MimeTokenStream.parseHeadless(java.io.InputStream stream, java.lang.String contentType)
          Instructs the MimeTokenStream to parse the given content with the content type.
 



Copyright © 2004-2012 The Apache Software Foundation. All Rights Reserved.