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-ooxml-5.2.3.jar?
What Is poi-ooxml-5.2.3.jar?
✍: FYIcenter.com
poi-ooxml-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-ooxml-5.2.3.jar supports Apache POI components that read and write Microsoft's Open Office XML document format, which is used in recent versions of Microsoft Office tools like Word 2007, Excel 2007, PowerPoint 2007, etc.
poi-ooxml-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-ooxml-5.2.3.jar Target JDK version: 9 Dependency: poi.jar xmlbeans.jar ooxml-schemas.jar commons-collections.jar junit.jar File name: poi-ooxml.jar, poi-ooxml-5.2.3.jar File size: 2010497 bytes Release date: 09-09-2022 Download: Apache POI Website
Here are Java Source Code files for poi-ooxml-5.2.3.jar:
⏎ org/apache/poi/xddf/usermodel/chart/XDDFChartAxis.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.xddf.usermodel.chart; import org.apache.poi.util.Beta; import org.apache.poi.xddf.usermodel.HasShapeProperties; import org.apache.poi.xddf.usermodel.XDDFShapeProperties; import org.apache.poi.xddf.usermodel.text.XDDFRunProperties; import org.openxmlformats.schemas.drawingml.x2006.chart.CTAxPos; import org.openxmlformats.schemas.drawingml.x2006.chart.CTBoolean; import org.openxmlformats.schemas.drawingml.x2006.chart.CTChartLines; import org.openxmlformats.schemas.drawingml.x2006.chart.CTCrosses; import org.openxmlformats.schemas.drawingml.x2006.chart.CTNumFmt; import org.openxmlformats.schemas.drawingml.x2006.chart.CTPlotArea; import org.openxmlformats.schemas.drawingml.x2006.chart.CTScaling; import org.openxmlformats.schemas.drawingml.x2006.chart.CTTickLblPos; import org.openxmlformats.schemas.drawingml.x2006.chart.CTTickMark; import org.openxmlformats.schemas.drawingml.x2006.chart.CTUnsignedInt; import org.openxmlformats.schemas.drawingml.x2006.main.CTShapeProperties; import org.openxmlformats.schemas.drawingml.x2006.main.CTTextBody; import org.openxmlformats.schemas.drawingml.x2006.main.CTTextCharacterProperties; import org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraph; import org.openxmlformats.schemas.drawingml.x2006.main.CTTextParagraphProperties; /** * Base class for all axis types. */ @Beta public abstract class XDDFChartAxis implements HasShapeProperties { protected abstract CTUnsignedInt getCTAxId(); protected abstract CTAxPos getCTAxPos(); protected abstract CTNumFmt getCTNumFmt(); protected abstract CTScaling getCTScaling(); protected abstract CTCrosses getCTCrosses(); protected abstract CTBoolean getDelete(); protected abstract CTTickMark getMajorCTTickMark(); protected abstract CTTickMark getMinorCTTickMark(); protected abstract CTTickLblPos getCTTickLblPos(); public abstract XDDFShapeProperties getOrAddMajorGridProperties(); public abstract XDDFShapeProperties getOrAddMinorGridProperties(); /** * @since POI 4.0.2 */ public abstract XDDFRunProperties getOrAddTextProperties(); /** * @since 4.0.1 */ public abstract void setTitle(String text); /** * @return true if minor unit value is defined, false otherwise */ public abstract boolean isSetMinorUnit(); /** * @param minor * axis minor unit */ public abstract void setMinorUnit(double minor); /** * @return axis minor unit or NaN if not set */ public abstract double getMinorUnit(); /** * @return true if major unit value is defined, false otherwise */ public abstract boolean isSetMajorUnit(); /** * @param major * axis major unit */ public abstract void setMajorUnit(double major); /** * @return axis major unit or NaN if not set */ public abstract double getMajorUnit(); /** * @return axis id */ public long getId() { return getCTAxId().getVal(); } /** * @return axis position */ public AxisPosition getPosition() { return AxisPosition.valueOf(getCTAxPos().getVal()); } /** * @param position * new axis position */ public void setPosition(AxisPosition position) { getCTAxPos().setVal(position.underlying); } /** * Use this to check before retrieving a number format, as calling * {@link #getNumberFormat()} may create a default one if none exists. * * @return true if a number format element is defined, false if not */ public abstract boolean hasNumberFormat(); /** * @param format * axis number format */ public void setNumberFormat(String format) { getCTNumFmt().setFormatCode(format); getCTNumFmt().setSourceLinked(true); } /** * @return axis number format */ public String getNumberFormat() { return getCTNumFmt().getFormatCode(); } /** * @return true if log base is defined, false otherwise */ public boolean isSetLogBase() { return getCTScaling().isSetLogBase(); } private static final double MIN_LOG_BASE = 2.0; private static final double MAX_LOG_BASE = 1000.0; /** * @param logBase * a number between 2 and 1000 (inclusive) * @throws IllegalArgumentException * if log base not within allowed range */ public void setLogBase(double logBase) { if (logBase < MIN_LOG_BASE || MAX_LOG_BASE < logBase) { throw new IllegalArgumentException("Axis log base must be between 2 and 1000 (inclusive), got: " + logBase); } CTScaling scaling = getCTScaling(); if (scaling.isSetLogBase()) { scaling.getLogBase().setVal(logBase); } else { scaling.addNewLogBase().setVal(logBase); } } /** * @return axis log base or NaN if not set */ public double getLogBase() { CTScaling scaling = getCTScaling(); if (scaling.isSetLogBase()) { return scaling.getLogBase().getVal(); } return Double.NaN; } /** * @return true if minimum value is defined, false otherwise */ public boolean isSetMinimum() { return getCTScaling().isSetMin(); } /** * @param min * axis minimum */ public void setMinimum(double min) { CTScaling scaling = getCTScaling(); if (Double.isNaN(min)) { if (scaling.isSetMin()) { scaling.unsetMin(); } } else { if (scaling.isSetMin()) { scaling.getMin().setVal(min); } else { scaling.addNewMin().setVal(min); } } } /** * @return axis minimum or NaN if not set */ public double getMinimum() { CTScaling scaling = getCTScaling(); if (scaling.isSetMin()) { return scaling.getMin().getVal(); } else { return Double.NaN; } } /** * @return true if maximum value is defined, false otherwise */ public boolean isSetMaximum() { return getCTScaling().isSetMax(); } /** * @param max * axis maximum */ public void setMaximum(double max) { CTScaling scaling = getCTScaling(); if (Double.isNaN(max)) { if (scaling.isSetMax()) { scaling.unsetMax(); } } else { if (scaling.isSetMax()) { scaling.getMax().setVal(max); } else { scaling.addNewMax().setVal(max); } } } /** * @return axis maximum or NaN if not set */ public double getMaximum() { CTScaling scaling = getCTScaling(); if (scaling.isSetMax()) { return scaling.getMax().getVal(); } else { return Double.NaN; } } /** * @return axis orientation */ public AxisOrientation getOrientation() { return AxisOrientation.valueOf(getCTScaling().getOrientation().getVal()); } /** * @param orientation * axis orientation */ public void setOrientation(AxisOrientation orientation) { CTScaling scaling = getCTScaling(); if (scaling.isSetOrientation()) { scaling.getOrientation().setVal(orientation.underlying); } else { scaling.addNewOrientation().setVal(orientation.underlying); } } /** * @return axis cross type */ public AxisCrosses getCrosses() { return AxisCrosses.valueOf(getCTCrosses().getVal()); } /** * @param crosses * axis cross type */ public void setCrosses(AxisCrosses crosses) { getCTCrosses().setVal(crosses.underlying); } /** * Declare this axis cross another axis. * * @param axis * that this axis should cross */ public abstract void crossAxis(XDDFChartAxis axis); /** * @return visibility of the axis. */ public boolean isVisible() { return !getDelete().getVal(); } /** * @param value * visibility of the axis. */ public void setVisible(boolean value) { getDelete().setVal(!value); } /** * @return major tick mark. */ public AxisTickMark getMajorTickMark() { return AxisTickMark.valueOf(getMajorCTTickMark().getVal()); } /** * @param tickMark * major tick mark type. */ public void setMajorTickMark(AxisTickMark tickMark) { getMajorCTTickMark().setVal(tickMark.underlying); } /** * @return minor tick mark. */ public AxisTickMark getMinorTickMark() { return AxisTickMark.valueOf(getMinorCTTickMark().getVal()); } /** * @param tickMark * minor tick mark type. */ public void setMinorTickMark(AxisTickMark tickMark) { getMinorCTTickMark().setVal(tickMark.underlying); } /** * @return tick label position. * @since POI 4.0.2 */ public AxisTickLabelPosition getTickLabelPosition() { return AxisTickLabelPosition.valueOf(getCTTickLblPos().getVal()); } /** * @param labelPosition * tick label position. * @since POI 4.0.2 */ public void setTickLabelPosition(AxisTickLabelPosition labelPosition) { getCTTickLblPos().setVal(labelPosition.underlying); } protected CTTextCharacterProperties getOrAddTextProperties(CTTextBody body) { CTTextCharacterProperties properties; if (body.getBodyPr() == null) { body.addNewBodyPr(); } CTTextParagraph paragraph; if (body.sizeOfPArray() > 0) { paragraph = body.getPArray(0); } else { paragraph = body.addNewP(); } CTTextParagraphProperties paraprops; if (paragraph.isSetPPr()) { paraprops = paragraph.getPPr(); } else { paraprops = paragraph.addNewPPr(); } if (paraprops.isSetDefRPr()) { properties = paraprops.getDefRPr(); } else { properties = paraprops.addNewDefRPr(); } return properties; } protected CTShapeProperties getOrAddLinesProperties(CTChartLines gridlines) { CTShapeProperties properties; if (gridlines.isSetSpPr()) { properties = gridlines.getSpPr(); } else { properties = gridlines.addNewSpPr(); } return properties; } protected long getNextAxId(CTPlotArea plotArea) { return 0L + plotArea.sizeOfValAxArray() + plotArea.sizeOfCatAxArray() + plotArea.sizeOfDateAxArray() + plotArea.sizeOfSerAxArray(); } }
⏎ org/apache/poi/xddf/usermodel/chart/XDDFChartAxis.java
Or download all of them as a single archive file:
File name: poi-ooxml-5.2.3-src.zip File size: 1396572 bytes Release date: 2022-09-09 Download
⇒ What Is poi-excelant-5.2.3.jar?
2017-04-01, 38010👍, 0💬
Popular Posts:
JDK 11 jdk.jdeps.jmod is the JMOD file for JDK 11 JDeps tool, which can be invoked by the "jdeps" co...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
JDK 11 jdk.internal.vm.ci.jmod is the JMOD file for JDK 11 Internal VM CI module. JDK 11 Internal VM...
What Is commons-logging-1.2.jar? commons-logging-1.2.jar is the JAR file for Apache Commons Logging ...
Provides support for the runtime platform, core utility methods and the extension registry. JAR File...