Package org.saiku.service.util.export.excel

Examples of org.saiku.service.util.export.excel.ExcelBuilderOptions


  public static byte[] exportExcel(CellSet cellSet,
                                   @NotNull ICellSetFormatter formatter,
                                   List<ThinHierarchy> filters) {
    CellDataSet table = OlapResultSetUtil.cellSet2Matrix(cellSet, formatter);
    ExcelBuilderOptions exb = new ExcelBuilderOptions();
    exb.repeatValues = formatter instanceof FlattenedCellSetFormatter;
    return getExcel(table, filters, exb);
  }
View Full Code Here

TOP

Related Classes of org.saiku.service.util.export.excel.ExcelBuilderOptions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.