Package ch.rabanti.nanoxlsx4j
Class Metadata
java.lang.Object
ch.rabanti.nanoxlsx4j.Metadata
Class representing the metadata of a workbook
- Author:
- Raphael Stoeckli
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the application which created the workbook.Gets the version of the creation application.Gets the category of the document.Gets the company owning the document.Gets the status of the document.Gets the creator of the workbook.Gets the description of the document or comment about itGets the hyperlink base of the documentGets the keyword for the workbook.Gets the responsible manager of the document.Gets the subject of the workbookgetTitle()
Gets the title of the workbookstatic String
parseVersion
(int major, int minor, int build, int revision) Method to parse a common version (major.minor.revision.build) into the compatible format (major.minor).void
setApplication
(String application) Sets the application which created the workbook.void
setApplicationVersion
(String applicationVersion) Sets the version of the creation application.void
setCategory
(String category) Sets the category of the document.void
setCompany
(String company) Sets the company owning the document.void
setContentStatus
(String contentStatus) Sets the status of the document.void
setCreator
(String creator) Sets the creator of the workbook.void
setDescription
(String description) Sets the description of the document or comment about itvoid
setHyperlinkBase
(String hyperlinkBase) Sets the hyperlink base of the documentvoid
setKeywords
(String keywords) Sets the keywords for the workbook.void
setManager
(String manager) Sets the responsible manager of the document.void
setSubject
(String subject) Sets the subject of the workbookvoid
Sets the title of the workbook
-
Constructor Details
-
Metadata
public Metadata()Default constructor
-
-
Method Details
-
getApplication
Gets the application which created the workbook. Default is PicoXLSX4j- Returns:
- Application which created the workbook
-
setApplication
Sets the application which created the workbook. Default is PicoXLSX4j- Parameters:
application
- Application which created the workbook
-
getApplicationVersion
Gets the version of the creation application. Default is the library version of PicoXLSjX. Use the format xxxxx.yyyyy (e.g. 1.0 or 55.9875) in case of a custom value.- Returns:
- Version of the creation application
-
setApplicationVersion
Sets the version of the creation application. Default is the library version of PicoXLSX4j. Use the format xxxxx.yyyyy (e.g. 1.0 or 55.9875) in case of a custom value.- API Note:
- Allowed values are null, empty and fractions from 0.0 to 99999.99999 (max. number of digits before and after the period is 5)
- Parameters:
applicationVersion
- Version of the creation application- Throws:
FormatException
- Thrown if the passed version results in a higher major or minor number of 99999
-
getCategory
Gets the category of the document. There are no predefined values or restrictions about the content of this field- Returns:
- Category of the document
-
setCategory
Sets the category of the document. There are no predefined values or restrictions about the content of this field- Parameters:
category
- Category of the document
-
getCompany
Gets the company owning the document. This value is for organizational purpose. Add more than one manager by using the semicolon (;) between the words- Returns:
- Company owning the document
-
setCompany
Sets the company owning the document. This value is for organizational purpose. Add more than one manager by using the semicolon (;) between the words- Parameters:
company
- Company owning the document
-
getContentStatus
Gets the status of the document. There are no predefined values or restrictions about the content of this field- Returns:
- Status of the document
-
setContentStatus
Sets the status of the document. There are no predefined values or restrictions about the content of this field- Parameters:
contentStatus
- Status of the document
-
getCreator
Gets the creator of the workbook. Add more than one creator by using the semicolon (;) between the authors- Returns:
- Creator of the workbook
-
setCreator
Sets the creator of the workbook. Add more than one creator by using the semicolon (;) between the authors- Parameters:
creator
- Creator of the workbook
-
getDescription
Gets the description of the document or comment about it- Returns:
- Description of the document
-
setDescription
Sets the description of the document or comment about it- Parameters:
description
- Description of the document
-
getHyperlinkBase
Gets the hyperlink base of the document- Returns:
- Hyperlink base of the document
-
setHyperlinkBase
Sets the hyperlink base of the document- Parameters:
hyperlinkBase
- Hyperlink base of the document
-
getKeywords
Gets the keyword for the workbook. Separate the keywords with semicolons (;)- Returns:
- Keywords for the workbook
-
setKeywords
Sets the keywords for the workbook. Separate the keywords with semicolons (;)- Parameters:
keywords
- Keywords for the workbook
-
getManager
Gets the responsible manager of the document. This value is for organizational purpose.- Returns:
- Responsible manager of the document
-
setManager
Sets the responsible manager of the document. This value is for organizational purpose.- Parameters:
manager
- Responsible manager of the document
-
getSubject
Gets the subject of the workbook- Returns:
- Subject of the workbook
-
setSubject
Sets the subject of the workbook- Parameters:
subject
- Subject of the workbook
-
getTitle
Gets the title of the workbook- Returns:
- Title of the workbook
-
setTitle
Sets the title of the workbook- Parameters:
title
- Title of the workbook
-
parseVersion
Method to parse a common version (major.minor.revision.build) into the compatible format (major.minor). The minimum value is 0.0 and the maximum value is 99999.99999
The minor, revision and build number are joined if possible. If the number is too long, the additional characters will be removed from the right side down to five characters (e.g. 785563 will be 78556)- Parameters:
major
- Major number from 0 to 99999minor
- Minor numberbuild
- Build numberrevision
- Revision number- Returns:
- Formatted version number (e.g. 1.0 or 55.987)
- Throws:
FormatException
- Thrown if the major number is too long or one of the numbers is negative
-