Package org.apache.poi.xslf.extractor
Class XSLFPowerPointExtractor
java.lang.Object
org.apache.poi.extractor.POITextExtractor
org.apache.poi.ooxml.extractor.POIXMLTextExtractor
org.apache.poi.xslf.extractor.XSLFPowerPointExtractor
- All Implemented Interfaces:
Closeable,AutoCloseable
@Deprecated
@Removal(version="5.0.0")
public class XSLFPowerPointExtractor
extends POIXMLTextExtractor
Deprecated.
Extractor for XSLF SlideShows
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionXSLFPowerPointExtractor(OPCPackage container) Deprecated.XSLFPowerPointExtractor(XMLSlideShow slideShow) Deprecated.XSLFPowerPointExtractor(XSLFSlideShow slideShow) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptiongetText()Deprecated.Gets the slide text, but not the notes textgetText(boolean slideText, boolean notesText) Deprecated.Gets the requested text from the filegetText(boolean slideText, boolean notesText, boolean masterText) Deprecated.Gets the requested text from the filegetText(boolean slideText, boolean notesText, boolean commentText, boolean masterText) Deprecated.Gets the requested text from the filestatic StringDeprecated.Gets the requested text from the slidestatic StringgetText(XSLFSlide slide, boolean slideText, boolean notesText, boolean commentText, boolean masterText) Deprecated.Gets the requested text from the slidestatic voidDeprecated.voidsetCommentsByDefault(boolean commentsByDefault) Deprecated.Should a call to getText() return comments text? Default is novoidsetMasterByDefault(boolean masterByDefault) Deprecated.Should a call to getText() return text from master? Default is novoidsetNotesByDefault(boolean notesByDefault) Deprecated.Should a call to getText() return notes text? Default is novoidsetSlidesByDefault(boolean slidesByDefault) Deprecated.Should a call to getText() return slide text? Default is yesMethods inherited from class org.apache.poi.ooxml.extractor.POIXMLTextExtractor
checkMaxTextSize, close, getCoreProperties, getCustomProperties, getDocument, getExtendedProperties, getMetadataTextExtractor, getPackageMethods inherited from class org.apache.poi.extractor.POITextExtractor
setFilesystem
-
Field Details
-
SUPPORTED_TYPES
Deprecated.
-
-
Constructor Details
-
XSLFPowerPointExtractor
Deprecated. -
XSLFPowerPointExtractor
Deprecated. -
XSLFPowerPointExtractor
public XSLFPowerPointExtractor(OPCPackage container) throws org.apache.xmlbeans.XmlException, OpenXML4JException, IOException Deprecated.- Throws:
org.apache.xmlbeans.XmlExceptionOpenXML4JExceptionIOException
-
-
Method Details
-
main
Deprecated.- Throws:
Exception
-
setSlidesByDefault
public void setSlidesByDefault(boolean slidesByDefault) Deprecated.Should a call to getText() return slide text? Default is yes -
setNotesByDefault
public void setNotesByDefault(boolean notesByDefault) Deprecated.Should a call to getText() return notes text? Default is no -
setCommentsByDefault
public void setCommentsByDefault(boolean commentsByDefault) Deprecated.Should a call to getText() return comments text? Default is no -
setMasterByDefault
public void setMasterByDefault(boolean masterByDefault) Deprecated.Should a call to getText() return text from master? Default is no -
getText
Deprecated.Gets the slide text, but not the notes text- Specified by:
getTextin classPOITextExtractor- Returns:
- All the text from the document
-
getText
Deprecated.Gets the requested text from the file- Parameters:
slideText- Should we retrieve text from slides?notesText- Should we retrieve text from notes?
-
getText
Deprecated.Gets the requested text from the file- Parameters:
slideText- Should we retrieve text from slides?notesText- Should we retrieve text from notes?masterText- Should we retrieve text from master slides?- Returns:
- the extracted text
-
getText
public String getText(boolean slideText, boolean notesText, boolean commentText, boolean masterText) Deprecated.Gets the requested text from the file- Parameters:
slideText- Should we retrieve text from slides?notesText- Should we retrieve text from notes?commentText- Should we retrieve text from comments?masterText- Should we retrieve text from master slides?- Returns:
- the extracted text
-
getText
public static String getText(XSLFSlide slide, boolean slideText, boolean notesText, boolean masterText) Deprecated.Gets the requested text from the slide- Parameters:
slide- the slide to retrieve the text fromslideText- Should we retrieve text from slides?notesText- Should we retrieve text from notes?masterText- Should we retrieve text from master slides?- Returns:
- the extracted text
-
getText
public static String getText(XSLFSlide slide, boolean slideText, boolean notesText, boolean commentText, boolean masterText) Deprecated.Gets the requested text from the slide- Parameters:
slide- the slide to retrieve the text fromslideText- Should we retrieve text from slides?notesText- Should we retrieve text from notes?commentText- Should we retrieve text from comments?masterText- Should we retrieve text from master slides?- Returns:
- the extracted text
-
SlideShowExtractor