Package loci.poi

Class POITextExtractor

java.lang.Object
loci.poi.POITextExtractor
Direct Known Subclasses:
ExcelExtractor

public abstract class POITextExtractor extends Object
Common Parent for Text Extractors of POI Documents. You will typically find the implementation of a given format's text extractor under loci.poi.[format].extractor .
See Also:
  • Field Details

    • document

      protected POIDocument document
      The POIDocument that's open
  • Constructor Details

    • POITextExtractor

      public POITextExtractor(POIDocument document)
      Creates a new text extractor for the given document
  • Method Details

    • getText

      public abstract String getText()
      Retrieves all the text from the document. How cells, paragraphs etc are separated in the text is implementation specific - see the javadocs for a specific project for details.
      Returns:
      All the text from the document