| Package | Description |
|---|---|
| org.apache.poi.sl.usermodel | |
| org.apache.poi.ss.usermodel |
| Modifier and Type | Method and Description |
|---|---|
static SlideShow<?,?> |
SlideShowFactory.create(File file)
Creates the appropriate HSLFSlideShow / XSLFSlideShow from
the given File, which must exist and be readable.
|
static SlideShow<?,?> |
SlideShowFactory.create(File file,
String password)
Creates the appropriate HSLFSlideShow / XSLFSlideShow from
the given File, which must exist and be readable, and
may be password protected
|
static SlideShow<?,?> |
SlideShowFactory.create(File file,
String password,
boolean readOnly)
Creates the appropriate HSLFSlideShow / XSLFSlideShow from
the given File, which must exist and be readable, and
may be password protected
|
static SlideShow<?,?> |
SlideShowFactory.create(InputStream inp)
Creates the appropriate HSLFSlideShow / XSLFSlideShow from
the given InputStream.
|
static SlideShow<?,?> |
SlideShowFactory.create(InputStream inp,
String password)
Creates the appropriate HSLFSlideShow / XSLFSlideShow from
the given InputStream, which may be password protected.
|
| Modifier and Type | Method and Description |
|---|---|
static Workbook |
WorkbookFactory.create(File file)
Creates the appropriate HSSFWorkbook / XSSFWorkbook from
the given File, which must exist and be readable.
|
static Workbook |
WorkbookFactory.create(File file,
String password)
Creates the appropriate HSSFWorkbook / XSSFWorkbook from
the given File, which must exist and be readable, and
may be password protected
|
static Workbook |
WorkbookFactory.create(File file,
String password,
boolean readOnly)
Creates the appropriate HSSFWorkbook / XSSFWorkbook from
the given File, which must exist and be readable, and
may be password protected
|
static Workbook |
WorkbookFactory.create(InputStream inp)
Creates the appropriate HSSFWorkbook / XSSFWorkbook from
the given InputStream.
|
static Workbook |
WorkbookFactory.create(InputStream inp,
String password)
Creates the appropriate HSSFWorkbook / XSSFWorkbook from
the given InputStream, which may be password protected.
|