Uses of Interface
org.apache.james.mime4j.dom.field.ParsedField
-
Packages that use ParsedField Package Description org.apache.james.mime4j.dom org.apache.james.mime4j.dom.field org.apache.james.mime4j.field org.apache.james.mime4j.internal org.apache.james.mime4j.message -
-
Uses of ParsedField in org.apache.james.mime4j.dom
Classes in org.apache.james.mime4j.dom with type parameters of type ParsedField Modifier and Type Interface Description interface
FieldParser<T extends ParsedField>
A parser or transformation process intended to convert raw (unstructured)Field
s into structuredParsedField
s. -
Uses of ParsedField in org.apache.james.mime4j.dom.field
Subinterfaces of ParsedField in org.apache.james.mime4j.dom.field Modifier and Type Interface Description 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
UnstructuredField
-
Uses of ParsedField in org.apache.james.mime4j.field
Classes in org.apache.james.mime4j.field that implement ParsedField Modifier and Type Class Description class
AbstractField
The base class of all field classes.class
AddressListFieldImpl
Address list field such asTo
orReply-To
.class
AddressListFieldLenientImpl
Address list field such asTo
orReply-To
.class
ContentDescriptionFieldImpl
Represents aContent-Description
field.class
ContentDispositionFieldImpl
Represents aContent-Disposition
field.class
ContentDispositionFieldLenientImpl
Represents aContent-Disposition
field.class
ContentIdFieldImpl
Represents aContent-Transfer-Encoding
field.class
ContentLanguageFieldImpl
Represents aContent-Transfer-Encoding
field.class
ContentLanguageFieldLenientImpl
Represents aContent-Transfer-Encoding
field.class
ContentLengthFieldImpl
Represents aContent-Length
field.class
ContentLocationFieldImpl
Represents aContent-Location
field.class
ContentLocationFieldLenientImpl
Represents aContent-Location
field.class
ContentMD5FieldImpl
Represents aContent-MD5
field.class
ContentTransferEncodingFieldImpl
Represents aContent-Transfer-Encoding
field.class
ContentTypeFieldImpl
Represents aContent-Type
field.class
ContentTypeFieldLenientImpl
Represents aContent-Type
field.class
DateTimeFieldImpl
Date-time field such asDate
orResent-Date
.class
DateTimeFieldLenientImpl
Date-time field such asDate
orResent-Date
.class
MailboxFieldImpl
Mailbox field such asSender
orResent-Sender
.class
MailboxFieldLenientImpl
Mailbox field such asSender
orResent-Sender
.class
MailboxListFieldImpl
Mailbox-list field such asFrom
orResent-From
.class
MailboxListFieldLenientImpl
Mailbox-list field such asFrom
orResent-From
.class
MimeVersionFieldImpl
Represents aMIME-Version
field.class
MimeVersionFieldLenientImpl
Represents aMIME-Version
field.class
UnstructuredFieldImpl
Simple unstructured field such asSubject
.Methods in org.apache.james.mime4j.field that return ParsedField Modifier and Type Method Description static ParsedField
DefaultFieldParser. parse(String rawStr)
static ParsedField
DefaultFieldParser. parse(String rawStr, DecodeMonitor monitor)
Parses the given string and returns an instance of theParsedField
class.static ParsedField
DefaultFieldParser. parse(ByteSequence raw, DecodeMonitor monitor)
Parses the given byte sequence and returns an instance of theParsedField
class.ParsedField
DelegatingFieldParser. parse(Field rawField, DecodeMonitor monitor)
static ParsedField
LenientFieldParser. parse(String rawStr)
Parses the given string and returns an instance of theParsedField
class.static ParsedField
LenientFieldParser. parse(String rawStr, DecodeMonitor monitor)
Parses the given string and returns an instance of theField
class.static ParsedField
LenientFieldParser. parse(ByteSequence raw, DecodeMonitor monitor)
Parses the given byte sequence and returns an instance of theParsedField
class.Methods in org.apache.james.mime4j.field that return types with arguments of type ParsedField Modifier and Type Method Description static FieldParser<ParsedField>
DefaultFieldParser. getParser()
Gets the default instance of this class.FieldParser<? extends ParsedField>
DelegatingFieldParser. getParser(String name)
static FieldParser<ParsedField>
LenientFieldParser. getParser()
Gets the default instance of this class.Method parameters in org.apache.james.mime4j.field with type arguments of type ParsedField Modifier and Type Method Description void
DelegatingFieldParser. setFieldParser(String name, FieldParser<? extends ParsedField> parser)
Sets the parser used for the field namedname
.Constructor parameters in org.apache.james.mime4j.field with type arguments of type ParsedField Constructor Description DelegatingFieldParser(FieldParser<? extends ParsedField> defaultParser)
-
Uses of ParsedField in org.apache.james.mime4j.internal
Methods in org.apache.james.mime4j.internal with type parameters of type ParsedField Modifier and Type Method Description <F extends ParsedField>
FAbstractEntityBuilder. obtainField(String fieldName)
-
Uses of ParsedField in org.apache.james.mime4j.message
Method parameters in org.apache.james.mime4j.message with type arguments of type ParsedField Modifier and Type Method Description void
DefaultMessageBuilder. setFieldParser(FieldParser<? extends ParsedField> fieldParser)
Constructor parameters in org.apache.james.mime4j.message with type arguments of type ParsedField Constructor Description DefaultBodyDescriptorBuilder(String parentMimeType, FieldParser<? extends ParsedField> fieldParser, DecodeMonitor monitor)
Creates a newBodyDescriptor
instance.SimpleContentHandler(FieldParser<? extends ParsedField> fieldParser, DecodeMonitor monitor)
-