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/functions/Baseifs.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.functions; import org.apache.poi.ss.formula.OperationEvaluationContext; import org.apache.poi.ss.formula.eval.AreaEval; import org.apache.poi.ss.formula.eval.ErrorEval; import org.apache.poi.ss.formula.eval.EvaluationException; import org.apache.poi.ss.formula.eval.RefEval; import org.apache.poi.ss.formula.eval.ValueEval; import org.apache.poi.ss.formula.functions.CountUtils.I_MatchPredicate; import org.apache.poi.ss.formula.functions.Countif.ErrorMatcher; /** * Base class for SUMIFS() and COUNTIFS() functions, as they share much of the same logic, * the difference being the source of the totals. */ /*package*/ abstract class Baseifs implements FreeRefFunction { /** * Implementations must be stateless. * @return true if there should be a range argument before the criteria pairs */ protected abstract boolean hasInitialRange(); /** * Implements the details of a specific aggregation function */ protected static interface Aggregator { void addValue(ValueEval d); ValueEval getResult(); } protected abstract Aggregator createAggregator(); public ValueEval evaluate(ValueEval[] args, OperationEvaluationContext ec) { final boolean hasInitialRange = hasInitialRange(); final int firstCriteria = hasInitialRange ? 1 : 0; if( args.length < (2+firstCriteria) || args.length % 2 != firstCriteria ) { return ErrorEval.VALUE_INVALID; } try { AreaEval sumRange = null; if (hasInitialRange) { sumRange = convertRangeArg(args[0]); } // collect pairs of ranges and criteria AreaEval[] ae = new AreaEval[(args.length - firstCriteria)/2]; I_MatchPredicate[] mp = new I_MatchPredicate[ae.length]; for(int i = firstCriteria, k=0; i < args.length; i += 2, k++){ ae[k] = convertRangeArg(args[i]); mp[k] = Countif.createCriteriaPredicate(args[i+1], ec.getRowIndex(), ec.getColumnIndex()); } validateCriteriaRanges(sumRange, ae); validateCriteria(mp); return aggregateMatchingCells(createAggregator(), sumRange, ae, mp); } catch (EvaluationException e) { return e.getErrorEval(); } } /** * Verify that each <code>criteriaRanges</code> argument contains the same number of rows and columns * including the <code>sumRange</code> argument if present * @param sumRange if used, it must match the shape of the criteriaRanges * @param criteriaRanges to check * @throws EvaluationException if the ranges do not match. */ private static void validateCriteriaRanges(AreaEval sumRange, AreaEval[] criteriaRanges) throws EvaluationException { int h = criteriaRanges[0].getHeight(); int w = criteriaRanges[0].getWidth(); if (sumRange != null && (sumRange.getHeight() != h || sumRange.getWidth() != w) ) { throw EvaluationException.invalidValue(); } for(AreaEval r : criteriaRanges){ if(r.getHeight() != h || r.getWidth() != w ) { throw EvaluationException.invalidValue(); } } } /** * Verify that each <code>criteria</code> predicate is valid, i.e. not an error * @param criteria to check * * @throws EvaluationException if there are criteria which resulted in Errors. */ private static void validateCriteria(I_MatchPredicate[] criteria) throws EvaluationException { for(I_MatchPredicate predicate : criteria) { // check for errors in predicate and return immediately using this error code if(predicate instanceof ErrorMatcher) { throw new EvaluationException(ErrorEval.valueOf(((ErrorMatcher)predicate).getValue())); } } } /** * @param sumRange the range to sum, if used (uses 1 for each match if not present) * @param ranges criteria ranges * @param predicates array of predicates, a predicate for each value in <code>ranges</code> * @return the computed value * @throws EvaluationException if there is an issue with eval */ private static ValueEval aggregateMatchingCells(Aggregator aggregator, AreaEval sumRange, AreaEval[] ranges, I_MatchPredicate[] predicates) throws EvaluationException { int height = ranges[0].getHeight(); int width = ranges[0].getWidth(); for (int r = 0; r < height; r++) { for (int c = 0; c < width; c++) { boolean matches = true; for(int i = 0; i < ranges.length; i++){ AreaEval aeRange = ranges[i]; I_MatchPredicate mp = predicates[i]; // Bugs 60858 and 56420 show predicate can be null if (mp == null || !mp.matches(aeRange.getRelativeValue(r, c))) { matches = false; break; } } if(matches) { // aggregate only if all of the corresponding criteria specified are true for that cell. if(sumRange != null) { ValueEval value = sumRange.getRelativeValue(r, c); if (value instanceof ErrorEval) { throw new EvaluationException((ErrorEval)value); } aggregator.addValue(value); } else { aggregator.addValue(null); } } } } return aggregator.getResult(); } protected static AreaEval convertRangeArg(ValueEval eval) throws EvaluationException { if (eval instanceof AreaEval) { return (AreaEval) eval; } if (eval instanceof RefEval) { return ((RefEval)eval).offset(0, 0, 0, 0); } throw new EvaluationException(ErrorEval.VALUE_INVALID); } }
⏎ org/apache/poi/ss/formula/functions/Baseifs.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, 98417👍, 0💬
Popular Posts:
JDK 11 java.rmi.jmod is the JMOD file for JDK 11 RMI (Remote Method Invocation) module. JDK 11 RMI m...
Woodstox 6.4.0 Source Code Files are provided at the Woodstox GitHub Website . You can download them...
GJT (Giant Java Tree) implementation of XML Pull Parser. JAR File Size and Download Location: File n...
The Java Naming and Directory Interface (JNDI) is part of the Java platform, providing applications ...
Where to find answers to frequently asked questions on Downloading and Installing ojdbc.jar - JDBC D...