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:
 java.io.Closeable,java.lang.AutoCloseable
@Deprecated @Removal(version="5.0.0") public class XSLFPowerPointExtractor extends POIXMLTextExtractor
Deprecated.useSlideShowExtractorExtractor for XSLF SlideShows 
- 
- 
Field Summary
Fields Modifier and Type Field Description static XSLFRelation[]SUPPORTED_TYPESDeprecated. 
- 
Constructor Summary
Constructors Constructor Description XSLFPowerPointExtractor(OPCPackage container)Deprecated.XSLFPowerPointExtractor(XMLSlideShow slideShow)Deprecated.XSLFPowerPointExtractor(XSLFSlideShow slideShow)Deprecated. 
- 
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.StringgetText()Deprecated.Gets the slide text, but not the notes textjava.lang.StringgetText(boolean slideText, boolean notesText)Deprecated.Gets the requested text from the filejava.lang.StringgetText(boolean slideText, boolean notesText, boolean masterText)Deprecated.Gets the requested text from the filejava.lang.StringgetText(boolean slideText, boolean notesText, boolean commentText, boolean masterText)Deprecated.Gets the requested text from the filestatic java.lang.StringgetText(XSLFSlide slide, boolean slideText, boolean notesText, boolean masterText)Deprecated.Gets the requested text from the slidestatic java.lang.StringgetText(XSLFSlide slide, boolean slideText, boolean notesText, boolean commentText, boolean masterText)Deprecated.Gets the requested text from the slidestatic voidmain(java.lang.String[] args)Deprecated.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 yes- 
Methods inherited from class org.apache.poi.ooxml.extractor.POIXMLTextExtractor
close, getCoreProperties, getCustomProperties, getDocument, getExtendedProperties, getMetadataTextExtractor, getPackage 
- 
Methods inherited from class org.apache.poi.extractor.POITextExtractor
setFilesystem 
 - 
 
 - 
 
- 
- 
Field Detail
- 
SUPPORTED_TYPES
public static final XSLFRelation[] SUPPORTED_TYPES
Deprecated. 
 - 
 
- 
Constructor Detail
- 
XSLFPowerPointExtractor
public XSLFPowerPointExtractor(XMLSlideShow slideShow)
Deprecated. 
- 
XSLFPowerPointExtractor
public XSLFPowerPointExtractor(XSLFSlideShow slideShow)
Deprecated. 
- 
XSLFPowerPointExtractor
public XSLFPowerPointExtractor(OPCPackage container) throws XmlException, OpenXML4JException, java.io.IOException
Deprecated.- Throws:
 XmlExceptionOpenXML4JExceptionjava.io.IOException
 
 - 
 
- 
Method Detail
- 
main
public static void main(java.lang.String[] args) throws java.lang.ExceptionDeprecated.- Throws:
 java.lang.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
public java.lang.String getText()
Deprecated.Gets the slide text, but not the notes text- Specified by:
 getTextin classPOITextExtractor- Returns:
 - All the text from the document
 
 
- 
getText
public java.lang.String getText(boolean slideText, boolean notesText)Deprecated.Gets the requested text from the file- Parameters:
 slideText- Should we retrieve text from slides?notesText- Should we retrieve text from notes?
 
- 
getText
public java.lang.String getText(boolean slideText, boolean notesText, 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?masterText- Should we retrieve text from master slides?- Returns:
 - the extracted text
 
 
- 
getText
public java.lang.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 java.lang.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 java.lang.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
 
 
 - 
 
 -