Interface ElementParserService<T>

All Known Implementing Classes:
ElementParserServiceImpl

public interface ElementParserService<T>
Implementations normally use several ElementParsers to parse the elements and it's sub-elements to generate new fields on a document for indexing.
Author:
avasquez
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    parse(org.dom4j.Element element, String parentFieldName, T doc)
    Parses the given element, generating one or more fields and adding them to the given document.
  • Method Details

    • parse

      void parse(org.dom4j.Element element, String parentFieldName, T doc)
      Parses the given element, generating one or more fields and adding them to the given document.
      Parameters:
      element - the element to parse
      parentFieldName - the field name of the parent
      doc - the document to add the generated fields