Class OdfWorkbook
- java.lang.Object
-
- org.pentaho.di.trans.steps.excelinput.ods.OdfWorkbook
-
- All Implemented Interfaces:
AutoCloseable
,org.pentaho.di.core.spreadsheet.KWorkbook
public class OdfWorkbook extends Object implements org.pentaho.di.core.spreadsheet.KWorkbook
-
-
Constructor Summary
Constructors Constructor Description OdfWorkbook(InputStream inputStream, String encoding)
OdfWorkbook(String filename, String encoding)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
String
getEncoding()
String
getFilename()
int
getNumberOfSheets()
org.pentaho.di.core.spreadsheet.KSheet
getSheet(int sheetNr)
org.pentaho.di.core.spreadsheet.KSheet
getSheet(String sheetName)
String
getSheetName(int sheetNr)
String[]
getSheetNames()
-
-
-
Constructor Detail
-
OdfWorkbook
public OdfWorkbook(String filename, String encoding) throws org.pentaho.di.core.exception.KettleException
- Throws:
org.pentaho.di.core.exception.KettleException
-
OdfWorkbook
public OdfWorkbook(InputStream inputStream, String encoding) throws org.pentaho.di.core.exception.KettleException
- Throws:
org.pentaho.di.core.exception.KettleException
-
-
Method Detail
-
close
public void close()
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceorg.pentaho.di.core.spreadsheet.KWorkbook
-
getSheet
public org.pentaho.di.core.spreadsheet.KSheet getSheet(String sheetName)
- Specified by:
getSheet
in interfaceorg.pentaho.di.core.spreadsheet.KWorkbook
-
getSheetNames
public String[] getSheetNames()
- Specified by:
getSheetNames
in interfaceorg.pentaho.di.core.spreadsheet.KWorkbook
-
getFilename
public String getFilename()
-
getEncoding
public String getEncoding()
-
getNumberOfSheets
public int getNumberOfSheets()
- Specified by:
getNumberOfSheets
in interfaceorg.pentaho.di.core.spreadsheet.KWorkbook
-
getSheet
public org.pentaho.di.core.spreadsheet.KSheet getSheet(int sheetNr)
- Specified by:
getSheet
in interfaceorg.pentaho.di.core.spreadsheet.KWorkbook
-
getSheetName
public String getSheetName(int sheetNr)
- Specified by:
getSheetName
in interfaceorg.pentaho.di.core.spreadsheet.KWorkbook
-
-