Package org.apache.james.mime4j.dom
Interface FieldParser<T extends ParsedField>
-
- All Known Implementing Classes:
DefaultFieldParser
,DelegatingFieldParser
,LenientFieldParser
public interface FieldParser<T extends ParsedField>
A parser or transformation process intended to convert raw (unstructured)Field
s into structuredParsedField
s.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
parse(Field rawField, DecodeMonitor monitor)
Parses raw (unstructured) field and converts it into a structured field.
-
-
-
Method Detail
-
parse
T parse(Field rawField, DecodeMonitor monitor)
Parses raw (unstructured) field and converts it into a structured field.
-
-