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/xdgf/usermodel/XDGFConnection.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.xdgf.usermodel;

import com.microsoft.schemas.office.visio.x2012.main.ConnectType;

/**
 * Represents connections in a Visio diagram.
 * 
 * Note that just because something appears to be visually connected in a
 * document does not mean that the user actually connected the elements. It
 * turns out there are a lot of ways that a careless user can neglect to
 * properly make connections that will not be recorded in the diagram
 * in a machine readable way.
 */
public class XDGFConnection {

    // comments on frompart/topart taken from pkgVisio

    // https://msdn.microsoft.com/en-us/library/ms367611(v=office.12).aspx

    // The following constants declared by the Microsoft Office Visio type
    // library show return values for the FromPart property.
    // Constant Value
    // visConnectFromError -1
    // visFromNone 0
    // visLeftEdge 1
    // visCenterEdge 2
    // visRightEdge 3
    // visBottomEdge 4
    // visMiddleEdge 5
    // visTopEdge 6
    // visBeginX 7
    // visBeginY 8
    // visBegin 9
    // visEndX 10
    // visEndY 11
    // visEnd 12
    // visFromAngle 13
    // visFromPin 14
    // visControlPoint 100 + zero-based row index (for example, visControlPoint
    // = 100 if the control point is in row 0; visControlPoint = 101 if the
    // control point is in row 1)

    public static final int visConnectFromError = -1;
    public static final int visFromNone = 0;
    public static final int visLeftEdge = 1;
    public static final int visCenterEdge = 2;
    public static final int visRightEdge = 3;
    public static final int visBottomEdge = 4;
    public static final int visMiddleEdge = 5;
    public static final int visTopEdge = 6;
    public static final int visBeginX = 7;
    public static final int visBeginY = 8;
    public static final int visBegin = 9;
    public static final int visEndX = 10;
    public static final int visEndY = 11;
    public static final int visEnd = 12;
    public static final int visFromAngle = 13;
    public static final int visFromPin = 14;

    // The ToPart property identifies the part of a shape to which another
    // shape is glued, such as its begin point or endpoint, one of its edges,
    // or a connection point. The following constants declared by the Visio type
    // library in member VisToParts show possible return values for the ToPart
    // property.
    // Constant Value
    // visConnectToError -1
    // visToNone 0
    // visGuideX 1
    // visGuideY 2
    // visWholeShape 3
    // visGuideIntersect 4
    // visToAngle 7
    // visConnectionPoint 100 + row index of connection point

    public static final int visConnectToError = -1;
    public static final int visToNone = 0;
    public static final int visGuideX = 1;
    public static final int visGuideY = 2;
    public static final int visWholeShape = 3;
    public static final int visGuideIntersect = 4;
    public static final int visToAngle = 7;

    private ConnectType _connect;
    private XDGFShape _from;
    private XDGFShape _to;

    public XDGFConnection(ConnectType connect, XDGFShape from, XDGFShape to) {
        _connect = connect;
        _from = from;
        _to = to;
    }

    public XDGFShape getFromShape() {
        return _from;
    }

    public XDGFCell getFromCell() {
        return _from.getCell(_connect.getFromCell());
    }

    public String getFromCellName() {
        return _connect.getFromCell();
    }

    public XDGFShape getToShape() {
        return _to;
    }

    public String getToCellName() {
        return _connect.getToCell();
    }

    // see constants above
    public Integer getFromPart() {
        if (_connect.isSetFromPart())
            return _connect.getFromPart();
        else
            return null;
    }

    /**
     * The ToPart property identifies the part of a shape to which another
     * shape is glued, such as its begin point or endpoint, one of its edges,
     * or a connection point.
     */
    public Integer getToPart() {
        if (_connect.isSetToPart())
            return _connect.getToPart();
        else
            return null;
    }
}

org/apache/poi/xdgf/usermodel/XDGFConnection.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?

What Is poi-5.2.3.jar?

Downloading and Installing Apache POI Java Library

⇑⇑ FAQ for Apache POI (Poor Obfuscation Implementation)

2017-04-01, 23777👍, 0💬