Example usage for org.apache.poi.xssf.model SharedStringsTable SharedStringsTable

List of usage examples for org.apache.poi.xssf.model SharedStringsTable SharedStringsTable

Introduction

In this page you can find the example usage for org.apache.poi.xssf.model SharedStringsTable SharedStringsTable.

Prototype

public SharedStringsTable() 

Source Link

Usage

From source file:org.pentaho.di.trans.steps.excelinput.staxpoi.StaxPoiSheetTest.java

License:Apache License

private SharedStringsTable mockSharedStringsTable(String... strings) {
    SharedStringsTable sst = new SharedStringsTable();
    for (String str : strings) {
        CTRst st = CTRst.Factory.newInstance();
        st.setT(str);/*from w ww  .ja  v a  2s .c  o  m*/
        sst.addEntry(st);
    }
    return sst;
}