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/openxml4j/opc/PackageProperties.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.openxml4j.opc; import org.apache.poi.openxml4j.exceptions.InvalidFormatException; import java.util.Date; import java.util.Optional; /** * Represents the core properties of an OPC package. * * @version 1.0 * @see org.apache.poi.openxml4j.opc.OPCPackage */ public interface PackageProperties { /** * Dublin Core Terms URI. */ String NAMESPACE_DCTERMS = "http://purl.org/dc/terms/"; /** * Dublin Core namespace URI. */ String NAMESPACE_DC = "http://purl.org/dc/elements/1.1/"; /* Getters and setters */ /** * Set the category of the content of this package. * @return property value */ Optional<String> getCategoryProperty(); /** * Set the category of the content of this package. */ void setCategoryProperty(String category); /** * Set the category of the content of this package. * @since 4.0.0 */ void setCategoryProperty(Optional<String> category); /** * Set the status of the content. * @return property value */ Optional<String> getContentStatusProperty(); /** * Get the status of the content. */ void setContentStatusProperty(String contentStatus); /** * Get the status of the content. * @since 4.0.0 */ void setContentStatusProperty(Optional<String> contentStatus); /** * Get the type of content represented, generally defined by a specific use * and intended audience. * @return property value */ Optional<String> getContentTypeProperty(); /** * Set the type of content represented, generally defined by a specific use * and intended audience. */ void setContentTypeProperty(String contentType); /** * Set the type of content represented, generally defined by a specific use * and intended audience. * @since 4.0.0 */ void setContentTypeProperty(Optional<String> contentType); /** * Get the date of creation of the resource. * @return property value */ Optional<Date> getCreatedProperty(); /** * Set the date of creation of the resource. * @throws InvalidFormatException only since POI 5.2.0, used to throw unchecked exception * IllegalArgumentException if format was invalid */ void setCreatedProperty(String created) throws InvalidFormatException; /** * Set the date of creation of the resource. */ void setCreatedProperty(Optional<Date> created); /** * Get the entity primarily responsible for making the content of the * resource. * @return property value */ Optional<String> getCreatorProperty(); /** * Set the entity primarily responsible for making the content of the * resource. */ void setCreatorProperty(String creator); /** * Set the entity primarily responsible for making the content of the * resource. * @since 4.0.0 */ void setCreatorProperty(Optional<String> creator); /** * Get the explanation of the content of the resource. */ Optional<String> getDescriptionProperty(); /** * Set the explanation of the content of the resource. */ void setDescriptionProperty(String description); /** * Set the explanation of the content of the resource. * @since 4.0.0 */ void setDescriptionProperty(Optional<String> description); /** * Get an unambiguous reference to the resource within a given context. * @return property value */ Optional<String> getIdentifierProperty(); /** * Set an unambiguous reference to the resource within a given context. */ void setIdentifierProperty(String identifier); /** * Set an unambiguous reference to the resource within a given context. * @since 4.0.0 */ void setIdentifierProperty(Optional<String> identifier); /** * Get a delimited set of keywords to support searching and indexing. This * is typically a list of terms that are not available elsewhere in the * properties * @return property value */ Optional<String> getKeywordsProperty(); /** * Set a delimited set of keywords to support searching and indexing. This * is typically a list of terms that are not available elsewhere in the * properties */ void setKeywordsProperty(String keywords); /** * Set a delimited set of keywords to support searching and indexing. This * is typically a list of terms that are not available elsewhere in the * properties * @since 4.0.0 */ void setKeywordsProperty(Optional<String> keywords); /** * Get the language of the intellectual content of the resource. * @return property value */ Optional<String> getLanguageProperty(); /** * Set the language of the intellectual content of the resource. */ void setLanguageProperty(String language); /** * Set the language of the intellectual content of the resource. * @since 4.0.0 */ void setLanguageProperty(Optional<String> language); /** * Get the user who performed the last modification. */ Optional<String> getLastModifiedByProperty(); /** * Set the user who performed the last modification. */ void setLastModifiedByProperty(String lastModifiedBy); /** * Set the user who performed the last modification. * @since 4.0.0 */ void setLastModifiedByProperty(Optional<String> lastModifiedBy); /** * Get the date and time of the last printing. * @return property value */ Optional<Date> getLastPrintedProperty(); /** * Set the date and time of the last printing. * @throws InvalidFormatException only since POI 5.2.0, used to throw unchecked exception * IllegalArgumentException if format was invalid */ void setLastPrintedProperty(String lastPrinted) throws InvalidFormatException; /** * Set the date and time of the last printing. */ void setLastPrintedProperty(Optional<Date> lastPrinted); /** * Get the date on which the resource was changed. * @return property value */ Optional<Date> getModifiedProperty(); /** * Set the date on which the resource was changed. * @throws InvalidFormatException only since POI 5.2.0, used to throw unchecked exception * IllegalArgumentException if format was invalid */ void setModifiedProperty(String modified) throws InvalidFormatException; /** * Set the date on which the resource was changed. */ void setModifiedProperty(Optional<Date> modified); /** * Get the revision number. * @return property value */ Optional<String> getRevisionProperty(); /** * Set the revision number. */ void setRevisionProperty(String revision); /** * Set the revision number. * @since 4.0.0 */ void setRevisionProperty(Optional<String> revision); /** * Get the topic of the content of the resource. * @return property value */ Optional<String> getSubjectProperty(); /** * Set the topic of the content of the resource. */ void setSubjectProperty(String subject); /** * Set the topic of the content of the resource. * @since 4.0.0 */ void setSubjectProperty(Optional<String> subject); /** * Get the name given to the resource. * @return property value */ Optional<String> getTitleProperty(); /** * Set the name given to the resource. */ void setTitleProperty(String title); /** * Set the name given to the resource. * @since 4.0.0 */ void setTitleProperty(Optional<String> title); /** * Get the version number. * @return property value */ Optional<String> getVersionProperty(); /** * Set the version number. */ void setVersionProperty(String version); /** * Set the version number. * @since 4.0.0 */ void setVersionProperty(Optional<String> version); }
⏎ org/apache/poi/openxml4j/opc/PackageProperties.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, 37247👍, 0💬
Popular Posts:
JDK 11 jdk.charsets.jmod is the JMOD file for JDK 11 Charsets module. JDK 11 Charsets module compile...
Swingx is the SwingLabs Swing Component Extensions. JAR File Size and Download Location: File name: ...
JLayer is a library that decodes/plays/converts MPEG 1/2/2.5 Layer 1/2/3 (i.e. MP3) in real time for...
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module. JDK 11 Base module compiled class fil...
JDK 11 java.management.jmod is the JMOD file for JDK 11 Management module. JDK 11 Management module ...