Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (309)
Collections:
Other Resources:
What Is poi-5.2.3.jar?
What Is poi-5.2.3.jar?
✍: FYIcenter.com
poi-5.2.3.jar is one of the JAR files for Apache POI 5.2.3, which provides an API for Microsoft document files of Word, Excel, PowerPoint, and Visio.
poi-5.2.3.jar supports Apache POI components that read and write Microsoft's OLE 2 Compound document format, which is used in early versions of Microsoft Office tools like Word 97, Excel 97, PowerPoint 97, etc.
poi-5.2.3.jar is distributed as part of the poi-bin-5.2.3-20220909.zip download file.
JAR File Size and Download Location:
JAR name: poi-5.2.3.jar Target JDK version: 9 File name: poi.jar, poi-5.2.3.jar File size: 2964641 bytes Release date: 09-09-2022 Download: Apache POI Website
Here are Java Source Code files for poi-5.2.3.jar:
⏎ org/apache/poi/ss/formula/eval/AreaEvalBase.java
/* ==================================================================== 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.formula.eval; import org.apache.poi.ss.formula.SheetRange; import org.apache.poi.ss.formula.ptg.AreaI; public abstract class AreaEvalBase implements AreaEval { private final int _firstSheet; private final int _firstColumn; private final int _firstRow; private final int _lastSheet; private final int _lastColumn; private final int _lastRow; private final int _nColumns; private final int _nRows; protected AreaEvalBase(SheetRange sheets, int firstRow, int firstColumn, int lastRow, int lastColumn) { _firstColumn = firstColumn; _firstRow = firstRow; _lastColumn = lastColumn; _lastRow = lastRow; _nColumns = _lastColumn - _firstColumn + 1; _nRows = _lastRow - _firstRow + 1; if (sheets != null) { _firstSheet = sheets.getFirstSheetIndex(); _lastSheet = sheets.getLastSheetIndex(); } else { _firstSheet = -1; _lastSheet = -1; } } protected AreaEvalBase(int firstRow, int firstColumn, int lastRow, int lastColumn) { this(null, firstRow, firstColumn, lastRow, lastColumn); } protected AreaEvalBase(AreaI ptg) { this(ptg, null); } protected AreaEvalBase(AreaI ptg, SheetRange sheets) { this(sheets, ptg.getFirstRow(), ptg.getFirstColumn(), ptg.getLastRow(), ptg.getLastColumn()); } @Override public final int getFirstColumn() { return _firstColumn; } @Override public final int getFirstRow() { return _firstRow; } @Override public final int getLastColumn() { return _lastColumn; } @Override public final int getLastRow() { return _lastRow; } @Override public int getFirstSheetIndex() { return _firstSheet; } @Override public int getLastSheetIndex() { return _lastSheet; } @Override public final ValueEval getAbsoluteValue(int row, int col) { int rowOffsetIx = row - _firstRow; int colOffsetIx = col - _firstColumn; if(rowOffsetIx < 0 || rowOffsetIx >= _nRows) { throw new IllegalArgumentException("Specified row index (" + row + ") is outside the allowed range (" + _firstRow + ".." + _lastRow + ")"); } if(colOffsetIx < 0 || colOffsetIx >= _nColumns) { throw new IllegalArgumentException("Specified column index (" + col + ") is outside the allowed range (" + _firstColumn + ".." + col + ")"); } return getRelativeValue(rowOffsetIx, colOffsetIx); } @Override public final boolean contains(int row, int col) { return _firstRow <= row && _lastRow >= row && _firstColumn <= col && _lastColumn >= col; } @Override public final boolean containsRow(int row) { return _firstRow <= row && _lastRow >= row; } @Override public final boolean containsColumn(int col) { return _firstColumn <= col && _lastColumn >= col; } @Override public final boolean isColumn() { return _firstColumn == _lastColumn; } @Override public final boolean isRow() { return _firstRow == _lastRow; } @Override public int getHeight() { return _lastRow-_firstRow+1; } @Override public final ValueEval getValue(int row, int col) { return getRelativeValue(row, col); } @Override public final ValueEval getValue(int sheetIndex, int row, int col) { return getRelativeValue(sheetIndex, row, col); } @Override public abstract ValueEval getRelativeValue(int relativeRowIndex, int relativeColumnIndex); public abstract ValueEval getRelativeValue(int sheetIndex, int relativeRowIndex, int relativeColumnIndex); @Override public int getWidth() { return _lastColumn-_firstColumn+1; } /** * @return whether cell at rowIndex and columnIndex is a subtotal. * By default return false which means 'don't care about subtotals' */ @Override public boolean isSubTotal(int rowIndex, int columnIndex) { return false; } /** * @return false by default, meaning all rows are calculated * @see org.apache.poi.ss.formula.TwoDEval#isRowHidden(int) */ @Override public boolean isRowHidden(int rowIndex) { return false; } }
⏎ org/apache/poi/ss/formula/eval/AreaEvalBase.java
Or download all of them as a single archive file:
File name: poi-5.2.3-src.zip File size: 2479830 bytes Release date: 2022-09-09 Download
⇒ What Is poi-ooxml-5.2.3.jar?
⇐ What Is poi-bin-5.2.3-20220909.zip?
2017-04-04, 92873👍, 0💬
Popular Posts:
How to run "jarsigner" command from JDK tools.jar file? "jarsigner" command allows you to digitally ...
JavaMail Source Code Files are provided in the source package file, httpcomponents-client-5. 2-src.zi...
GJT (Giant Java Tree) implementation of XML Pull Parser. JAR File Size and Download Location: File n...
maven-compat-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Compact module. The JAR file name may ...
maven-compat-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Compact module. The JAR file name may ...