Package org.apache.tika.parser.xml
Class ElementMetadataHandler
java.lang.Object
org.xml.sax.helpers.DefaultHandler
org.apache.tika.parser.xml.ElementMetadataHandler
- All Implemented Interfaces:
ContentHandler
,DTDHandler
,EntityResolver
,ErrorHandler
SAX event handler that maps the contents of an XML element into
a metadata field.
- Since:
- Apache Tika 0.10
-
Constructor Summary
ConstructorDescriptionElementMetadataHandler
(String uri, String localName, Metadata metadata, String name) Constructor for string metadata keys.ElementMetadataHandler
(String uri, String localName, Metadata metadata, String name, boolean allowDuplicateValues, boolean allowEmptyValues) Constructor for string metadata keys which allows change of behavior for duplicate and empty entry values.ElementMetadataHandler
(String uri, String localName, Metadata metadata, Property targetProperty) Constructor for Property metadata keys.ElementMetadataHandler
(String uri, String localName, Metadata metadata, Property targetProperty, boolean allowDuplicateValues, boolean allowEmptyValues) Constructor for Property metadata keys which allows change of behavior for duplicate and empty entry values. -
Method Summary
Modifier and TypeMethodDescriptionprotected void
addMetadata
(String value) Adds the given metadata value.void
characters
(char[] ch, int start, int length) void
endElement
(String uri, String localName, String name) void
ignorableWhitespace
(char[] ch, int start, int length) protected boolean
isMatchingElement
(String uri, String localName) protected boolean
isMatchingParentElement
(String uri, String localName) void
startElement
(String uri, String localName, String name, Attributes attributes) Methods inherited from class org.xml.sax.helpers.DefaultHandler
endDocument, endPrefixMapping, error, fatalError, notationDecl, processingInstruction, resolveEntity, setDocumentLocator, skippedEntity, startDocument, startPrefixMapping, unparsedEntityDecl, warning
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.xml.sax.ContentHandler
declaration
-
Constructor Details
-
ElementMetadataHandler
Constructor for string metadata keys.- Parameters:
uri
- the uri of the namespace of the elementlocalName
- the local name of the elementmetadata
- the Tika metadata object to populatename
- the Tika metadata field key
-
ElementMetadataHandler
public ElementMetadataHandler(String uri, String localName, Metadata metadata, String name, boolean allowDuplicateValues, boolean allowEmptyValues) Constructor for string metadata keys which allows change of behavior for duplicate and empty entry values.- Parameters:
uri
- the uri of the namespace of the elementlocalName
- the local name of the elementmetadata
- the Tika metadata object to populatename
- the Tika metadata field keyallowDuplicateValues
- add duplicate values to the Tika metadataallowEmptyValues
- add empty values to the Tika metadata
-
ElementMetadataHandler
public ElementMetadataHandler(String uri, String localName, Metadata metadata, Property targetProperty) Constructor for Property metadata keys.- Parameters:
uri
- the uri of the namespace of the elementlocalName
- the local name of the elementmetadata
- the Tika metadata object to populatetargetProperty
- the Tika metadata Property key
-
ElementMetadataHandler
public ElementMetadataHandler(String uri, String localName, Metadata metadata, Property targetProperty, boolean allowDuplicateValues, boolean allowEmptyValues) Constructor for Property metadata keys which allows change of behavior for duplicate and empty entry values.- Parameters:
uri
- the uri of the namespace of the elementlocalName
- the local name of the elementmetadata
- the Tika metadata object to populatetargetProperty
- the Tika metadata Property keyallowDuplicateValues
- add duplicate values to the Tika metadataallowEmptyValues
- add empty values to the Tika metadata
-
-
Method Details
-
isMatchingParentElement
-
isMatchingElement
-
startElement
- Specified by:
startElement
in interfaceContentHandler
- Overrides:
startElement
in classDefaultHandler
-
endElement
- Specified by:
endElement
in interfaceContentHandler
- Overrides:
endElement
in classDefaultHandler
-
characters
public void characters(char[] ch, int start, int length) - Specified by:
characters
in interfaceContentHandler
- Overrides:
characters
in classDefaultHandler
-
ignorableWhitespace
public void ignorableWhitespace(char[] ch, int start, int length) - Specified by:
ignorableWhitespace
in interfaceContentHandler
- Overrides:
ignorableWhitespace
in classDefaultHandler
-
addMetadata
Adds the given metadata value. The value is ignored if it isnull
or empty. If the metadata entry already exists, then the given value is appended to it with a comma as the separator.- Parameters:
value
- metadata value
-