From: Javen O'Neal Date: Thu, 9 Jun 2016 22:47:35 +0000 (+0000) Subject: bug 57840: add Table interface for Structured References. Patch from Daniel Livshen... X-Git-Tag: REL_3_15_BETA2~185 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=827747b99a2b04a849475555408df8062441c4cf;p=poi.git bug 57840: add Table interface for Structured References. Patch from Daniel Livshen and Greg Woolsey. git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1747602 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/poi/ss/usermodel/Table.java b/src/java/org/apache/poi/ss/usermodel/Table.java new file mode 100644 index 0000000000..8f7140e7c4 --- /dev/null +++ b/src/java/org/apache/poi/ss/usermodel/Table.java @@ -0,0 +1,78 @@ +/* ==================================================================== + 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.ss.usermodel; + +import java.util.regex.Pattern; + +/** + * XSSF Only! + * High level abstraction of table in a workbook. + */ +public interface Table { + /** + * Regular expression matching a Structured Reference (Table syntax) for XSSF table expressions. + * Public for unit tests + * @see + * Excel Structured Reference Syntax + * + */ + Pattern isStructuredReference = Pattern.compile("[a-zA-Z_\\\\][a-zA-Z0-9._]*\\[.*\\]"); + + /** + * Get the top-left col index + * @return + */ + int getStartColIndex(); + /** + * Get the top-left row index + * @return + */ + int getStartRowIndex(); + /** + * Get the bottom-right col index + * @return + */ + int getEndColIndex(); + /** + * Get the bottom-right row index + * @return + */ + int getEndRowIndex(); + /** + * Get the name of the table. + */ + String getName(); + + /** + * Returns the index of a given named column in the table (names are case insensitive in XSSF). + * Note this list is lazily loaded and cached for performance. + * Changes to the underlying table structure are not reflected in later calls + * unless XSSFTable.updateHeaders() is called to reset the cache. + */ + int findColumnIndex(String column); + /** + * Returns the sheet name that the table belongs to. + */ + String getSheetName(); + /** + * Returns true iff the table has 'Totals' row + */ + boolean isHasTotalsRow(); + + +}