Package org.apache.james.mime4j.field
Class ContentLocationFieldImpl
- java.lang.Object
-
- org.apache.james.mime4j.field.AbstractField
-
- org.apache.james.mime4j.field.ContentLocationFieldImpl
-
- All Implemented Interfaces:
ContentLocationField
,ParsedField
,Field
public class ContentLocationFieldImpl extends AbstractField implements ContentLocationField
Represents aContent-Location
field.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
location
private boolean
parsed
private ParseException
parseException
static FieldParser<ContentLocationField>
PARSER
private static java.util.regex.Pattern
PATTERN
-
Fields inherited from class org.apache.james.mime4j.field.AbstractField
monitor, rawField
-
-
Constructor Summary
Constructors Constructor Description ContentLocationFieldImpl(Field rawField, DecodeMonitor monitor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getLocation()
Gets the content location defined in this field.ParseException
getParseException()
Returns the exception that was thrown by the field parser while parsing the field value.private void
parse()
-
Methods inherited from class org.apache.james.mime4j.field.AbstractField
getBody, getName, getNameLowerCase, getRaw, getRawField, isValidField, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.james.mime4j.dom.field.ContentLocationField
bodyDescriptionField
-
Methods inherited from interface org.apache.james.mime4j.stream.Field
getBody, getName, getNameLowerCase, getRaw
-
Methods inherited from interface org.apache.james.mime4j.dom.field.ParsedField
isValidField
-
-
-
-
Field Detail
-
PATTERN
private static final java.util.regex.Pattern PATTERN
-
parsed
private boolean parsed
-
location
private java.lang.String location
-
parseException
private ParseException parseException
-
PARSER
public static final FieldParser<ContentLocationField> PARSER
-
-
Constructor Detail
-
ContentLocationFieldImpl
ContentLocationFieldImpl(Field rawField, DecodeMonitor monitor)
-
-
Method Detail
-
parse
private void parse()
-
getLocation
public java.lang.String getLocation()
Description copied from interface:ContentLocationField
Gets the content location defined in this field.- Specified by:
getLocation
in interfaceContentLocationField
- Returns:
- the content location or
null
if not set.
-
getParseException
public ParseException getParseException()
Description copied from interface:ParsedField
Returns the exception that was thrown by the field parser while parsing the field value. The result isnull
if the field is valid and no errors were encountered.- Specified by:
getParseException
in interfaceParsedField
- Overrides:
getParseException
in classAbstractField
- Returns:
- the exception that was thrown by the field parser or
null
if the field is valid. - See Also:
ParsedField.getParseException()
-
-