mirror of https://github.com/apache/poi.git
[GitHub-562] Add extra pivot table classes to poi-ooxml-lite. This closes #562
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1914509 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ecc42ac4f2
commit
2c838143ba
|
@ -0,0 +1,104 @@
|
||||||
|
/* ====================================================================
|
||||||
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
contributor license agreements. See the NOTICE file distributed with
|
||||||
|
this work for additional information regarding copyright ownership.
|
||||||
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
||||||
|
(the "License"); you may not use this file except in compliance with
|
||||||
|
the License. You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
==================================================================== */
|
||||||
|
|
||||||
|
package org.apache.poi.xssf.usermodel;
|
||||||
|
|
||||||
|
import org.apache.poi.ss.usermodel.DataConsolidateFunction;
|
||||||
|
import org.apache.poi.ss.usermodel.Row;
|
||||||
|
import org.apache.poi.ss.util.AreaReference;
|
||||||
|
import org.apache.poi.ss.util.CellReference;
|
||||||
|
import org.apache.poi.xssf.XSSFITestDataProvider;
|
||||||
|
import org.junit.jupiter.api.Test;
|
||||||
|
import org.openxmlformats.schemas.spreadsheetml.x2006.main.CTPivotAreaReference;
|
||||||
|
import org.openxmlformats.schemas.spreadsheetml.x2006.main.STFieldSortType;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test pivot tables created by area reference
|
||||||
|
*/
|
||||||
|
class TestXSSFPivotTableSorting {
|
||||||
|
private static final XSSFITestDataProvider _testDataProvider = XSSFITestDataProvider.instance;
|
||||||
|
|
||||||
|
@Test
|
||||||
|
void testNestedSorting() throws IOException {
|
||||||
|
try (XSSFWorkbook wb = new XSSFWorkbook()) {
|
||||||
|
XSSFSheet sheet = wb.createSheet();
|
||||||
|
|
||||||
|
Row row0 = sheet.createRow(0);
|
||||||
|
// Create a cell and put a value in it.
|
||||||
|
row0.createCell(0).setCellValue("Month");
|
||||||
|
row0.createCell(1).setCellValue("Name");
|
||||||
|
row0.createCell(2).setCellValue("Product");
|
||||||
|
row0.createCell(3).setCellValue("Amount");
|
||||||
|
|
||||||
|
Row row1 = sheet.createRow(1);
|
||||||
|
row1.createCell(0).setCellValue("Jan");
|
||||||
|
row1.createCell(1).setCellValue("John");
|
||||||
|
row1.createCell(2).setCellValue("Pen");
|
||||||
|
row1.createCell(3).setCellValue(5);
|
||||||
|
|
||||||
|
Row row2 = sheet.createRow(2);
|
||||||
|
row2.createCell(0).setCellValue("Jan");
|
||||||
|
row2.createCell(1).setCellValue("Mary");
|
||||||
|
row2.createCell(2).setCellValue("Paper");
|
||||||
|
row2.createCell(3).setCellValue(5);
|
||||||
|
|
||||||
|
Row row3 = sheet.createRow(3);
|
||||||
|
row3.createCell(0).setCellValue("Feb");
|
||||||
|
row3.createCell(1).setCellValue("John");
|
||||||
|
row3.createCell(2).setCellValue("Clips");
|
||||||
|
row3.createCell(3).setCellValue(5);
|
||||||
|
|
||||||
|
Row row4 = sheet.createRow(4);
|
||||||
|
row4.createCell(0).setCellValue("Feb");
|
||||||
|
row4.createCell(1).setCellValue("Mary");
|
||||||
|
row4.createCell(2).setCellValue("Book");
|
||||||
|
row4.createCell(3).setCellValue(15);
|
||||||
|
|
||||||
|
|
||||||
|
AreaReference source = wb.getCreationHelper().createAreaReference("A1:D5");
|
||||||
|
XSSFPivotTable pivotTable = sheet.createPivotTable(source, new CellReference("H1"));
|
||||||
|
|
||||||
|
int monthCol = 0;
|
||||||
|
int nameCol = 1;
|
||||||
|
int productCol = 2;
|
||||||
|
int amountCol = 3;
|
||||||
|
|
||||||
|
// Names
|
||||||
|
pivotTable.addRowLabel(nameCol);
|
||||||
|
pivotTable.addRowLabel(productCol);
|
||||||
|
pivotTable.addColumnLabel(DataConsolidateFunction.SUM, amountCol);
|
||||||
|
|
||||||
|
pivotTable.getCTPivotTableDefinition().getPivotFields().getPivotFieldArray(nameCol).setSortType(STFieldSortType.ASCENDING);
|
||||||
|
pivotTable.getCTPivotTableDefinition().getPivotFields().getPivotFieldArray(productCol).setSortType(STFieldSortType.DESCENDING);
|
||||||
|
|
||||||
|
// add sorting ASC by sum
|
||||||
|
int advancedSortingColumnInPivot = 1;
|
||||||
|
CTPivotAreaReference reference =
|
||||||
|
pivotTable.getCTPivotTableDefinition().getPivotFields().getPivotFieldArray(advancedSortingColumnInPivot)
|
||||||
|
.addNewAutoSortScope().addNewPivotArea().addNewReferences().addNewReference();
|
||||||
|
|
||||||
|
// I have no idea what these constants are for
|
||||||
|
reference.setField(4294967294L); // if you are curious it's a 2^32 - 2 or just signed -2
|
||||||
|
reference.addNewX().setV(0);
|
||||||
|
assertEquals(2, pivotTable.getRowLabelColumns().size());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1908,6 +1908,28 @@ org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/StyleSheetDocumentImpl
|
||||||
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/TableDocumentImpl
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/TableDocumentImpl
|
||||||
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/WorkbookDocumentImpl
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/WorkbookDocumentImpl
|
||||||
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/WorksheetDocumentImpl
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/WorksheetDocumentImpl
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/STFieldSortType
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/STFieldSortTypeImpl
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/CTAutoSortScopeImpl
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTAutoSortScope
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/CTPivotAreaImpl
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTPivotArea
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/STPivotAreaType$Enum
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/CTPivotAreaReferencesImpl
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTPivotAreaReferences
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/CTPivotAreaReferenceImpl
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTPivotAreaReference
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/impl/CTIndexImpl
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTIndex
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTFormats
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTPivotFilters
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTColItems
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTRowItems
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTChartFormats
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTConditionalFormats
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTPivotHierarchies
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTRowHierarchiesUsage
|
||||||
|
org/openxmlformats/schemas/spreadsheetml/x2006/main/CTColHierarchiesUsage
|
||||||
org/openxmlformats/schemas/wordprocessingml/x2006/main/CTAbstractNum
|
org/openxmlformats/schemas/wordprocessingml/x2006/main/CTAbstractNum
|
||||||
org/openxmlformats/schemas/wordprocessingml/x2006/main/CTAltChunk
|
org/openxmlformats/schemas/wordprocessingml/x2006/main/CTAltChunk
|
||||||
org/openxmlformats/schemas/wordprocessingml/x2006/main/CTAttr
|
org/openxmlformats/schemas/wordprocessingml/x2006/main/CTAttr
|
||||||
|
|
|
@ -1177,3 +1177,9 @@ staxisunit6cc7type
|
||||||
chartelement2
|
chartelement2
|
||||||
ctaudiofile1563type
|
ctaudiofile1563type
|
||||||
relationships93b3doctype
|
relationships93b3doctype
|
||||||
|
stfieldsorttypee6a1type
|
||||||
|
ctautosortscope0dc6type
|
||||||
|
ctpivotarea26cetype
|
||||||
|
ctpivotareareferencesaef6type
|
||||||
|
ctpivotareareferencee5a5type
|
||||||
|
ctindex5371type
|
||||||
|
|
Loading…
Reference in New Issue