Package org.apache.maven.doxia.document
Class DocumentMeta
- java.lang.Object
-
- org.apache.maven.doxia.document.DocumentMeta
-
- All Implemented Interfaces:
Serializable
public class DocumentMeta extends Object implements Serializable
Metadata is general information about a document.
The metadata elements used here were mostly inspired by the Open Document Format Specification v. 1.1, which in turn borrows heavily upon the metadata standards developed by the Dublin Core Metadata Initiative.
- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DocumentMeta()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddAuthor(DocumentAuthor documentAuthor)Method addAuthor.voidaddKeyWord(String string)Method addKeyWord.booleanequals(Object other)Method equals.StringgetAllAuthorNames()StringgetAllKeyWords()StringgetAuthor()Get the unique author of the document, usually as a String of "firstName lastName".List<DocumentAuthor>getAuthors()Method getAuthors.StringgetCreationdate()Get the date and time when the document was created initially.DategetCreationDate()Get the date and time when the document was created initially.StringgetCreator()Get the name of the person who last modified the document.DategetDate()Get the date and time when the document was last modified.StringgetDescription()Get a brief description of the document.DocumentStatisticgetDocumentStatistic()Get the statistics of the document, for example, the page count, word count, etc.longgetEditingCycles()Get the number of editing cycles the document has been through.longgetEditingDuration()Get the total time spent editing the document.StringgetGenerator()Get a string that identifies the application or tool that was used to create or last modify the document.DocumentHyperlinkBehaviourgetHyperlinkBehaviour()Get the hyperlink-behaviour element specifies the default behavior for hyperlinks in the document.StringgetInitialCreator()Get the name of the person who created the document initially.StringgetKeywords()Deprecated.use the <keyWords/> tag instead of.List<String>getKeyWords()Method getKeyWords.StringgetLanguage()Get the default language of the document.StringgetModifydate()Get the date and time when the document was last modified.StringgetPageSize()Get the pagesize of the document.StringgetPrintdate()Get the date and time when the document was last printed.DategetPrintDate()Get the date and time when the document was last printed.StringgetPrintedBy()Get the name of the person who last printed the document.StringgetSubject()Get the subject of the document.DocumentTemplategetTemplate()Get a template that was used to create the document.StringgetTitle()Get the title of the document.inthashCode()Method hashCode.booleanisConfidential()Get whether the content of the document is in some sense confidential.booleanisDraft()Get whether the content of the document is in some sense preliminary.voidremoveAuthor(DocumentAuthor documentAuthor)Method removeAuthor.voidremoveKeyWord(String string)Method removeKeyWord.voidsetAuthor(String author)Set the unique author of the document, usually as a String of "firstName lastName".voidsetAuthors(List<DocumentAuthor> authors)Set the authors of the document.voidsetConfidential(boolean confidential)Set whether the content of the document is in some sense confidential.voidsetCreationdate(String creationdate)Set the date as String (recommended format is ISO 8601) when the document was created initially.voidsetCreationDate(Date creationDate)Set the date and time when the document was created initially.voidsetCreator(String creator)Set the name of the person who last modified the document.voidsetDate(Date date)Set the date and time when the document was last modified.voidsetDescription(String description)Set a brief description of the document.voidsetDocumentStatistic(DocumentStatistic documentStatistic)Set the statistics of the document, for example, the page count, word count, etc.voidsetDraft(boolean draft)Set whether the content of the document is in some sense preliminary.voidsetEditingCycles(long editingCycles)Set the number of editing cycles the document has been through.voidsetEditingDuration(long editingDuration)Set the total time spent editing the document.voidsetGenerator(String generator)Set a string that identifies the application or tool that was used to create or last modify the document.voidsetHyperlinkBehaviour(DocumentHyperlinkBehaviour hyperlinkBehaviour)Set the hyperlink-behaviour element specifies the default behavior for hyperlinks in the document.voidsetInitialCreator(String initialCreator)Set the name of the person who created the document initially.voidsetKeywords(String keywords)Deprecated.use the <keyWords/> tag instead of.voidsetKeyWords(List<String> keyWords)Set a keyword pertaining to the document.voidsetLanguage(String language)Set the default language of the document.voidsetModifydate(String modifydate)Set the date as String (recommended format is ISO 8601) when the document was last modified.voidsetPageSize(String pageSize)Set the pagesize of the document.voidsetPrintdate(String printdate)Set the date as String (recommended format is ISO 8601) when the document was last printed.voidsetPrintDate(Date printDate)Set the date and time when the document was last printed.voidsetPrintedBy(String printedBy)Set the name of the person who last printed the document.voidsetSubject(String subject)Set the subject of the document.voidsetTemplate(DocumentTemplate template)Set a template that was used to create the document.voidsetTitle(String title)Set the title of the document.StringtoString()Method toString.
-
-
-
Method Detail
-
addAuthor
public void addAuthor(DocumentAuthor documentAuthor)
Method addAuthor.- Parameters:
documentAuthor-
-
addKeyWord
public void addKeyWord(String string)
Method addKeyWord.- Parameters:
string-
-
equals
public boolean equals(Object other)
Method equals.
-
getAuthor
public String getAuthor()
Get the unique author of the document, usually as a String of "firstName lastName". For more authors, you could use the <authors/> tag.- Returns:
- String
-
getAuthors
public List<DocumentAuthor> getAuthors()
Method getAuthors.- Returns:
- List
-
getCreationDate
public Date getCreationDate()
Get the date and time when the document was created initially. Use the ISO 8601 format "yyyy-MM-dd'T'HH:mm:ss.SSS" in xml.- Returns:
- Date
-
getCreator
public String getCreator()
Get the name of the person who last modified the document.- Returns:
- String
-
getDate
public Date getDate()
Get the date and time when the document was last modified. Use the ISO 8601 format "yyyy-MM-dd'T'HH:mm:ss.SSS" in xml.- Returns:
- Date
-
getDescription
public String getDescription()
Get a brief description of the document.- Returns:
- String
-
getDocumentStatistic
public DocumentStatistic getDocumentStatistic()
Get the statistics of the document, for example, the page count, word count, etc.- Returns:
- DocumentStatistic
-
getEditingCycles
public long getEditingCycles()
Get the number of editing cycles the document has been through.- Returns:
- long
-
getEditingDuration
public long getEditingDuration()
Get the total time spent editing the document.- Returns:
- long
-
getGenerator
public String getGenerator()
Get a string that identifies the application or tool that was used to create or last modify the document.- Returns:
- String
-
getHyperlinkBehaviour
public DocumentHyperlinkBehaviour getHyperlinkBehaviour()
Get the hyperlink-behaviour element specifies the default behavior for hyperlinks in the document.- Returns:
- DocumentHyperlinkBehaviour
-
getInitialCreator
public String getInitialCreator()
Get the name of the person who created the document initially.- Returns:
- String
-
getKeywords
public String getKeywords()
Deprecated.use the <keyWords/> tag instead of.Get the keywords for the document, usually as a String of comma separated keywords.- Returns:
- String
-
getLanguage
public String getLanguage()
Get the default language of the document. The language is represented by a two or three letter Language Code taken from the ISO 639 standard, optionally followed by a hyphen (-) and a two-letter Country Code taken from the ISO 3166 standard.- Returns:
- String
-
getPageSize
public String getPageSize()
Get the pagesize of the document. At least "US", "USLetter" and "A4" should be supported.- Returns:
- String
-
getPrintDate
public Date getPrintDate()
Get the date and time when the document was last printed. Use the ISO 8601 format "yyyy-MM-dd'T'HH:mm:ss.SSS" in xml.- Returns:
- Date
-
getPrintedBy
public String getPrintedBy()
Get the name of the person who last printed the document.- Returns:
- String
-
getSubject
public String getSubject()
Get the subject of the document.- Returns:
- String
-
getTemplate
public DocumentTemplate getTemplate()
Get a template that was used to create the document.- Returns:
- DocumentTemplate
-
getTitle
public String getTitle()
Get the title of the document.- Returns:
- String
-
isConfidential
public boolean isConfidential()
Get whether the content of the document is in some sense confidential.- Returns:
- boolean
-
isDraft
public boolean isDraft()
Get whether the content of the document is in some sense preliminary.- Returns:
- boolean
-
removeAuthor
public void removeAuthor(DocumentAuthor documentAuthor)
Method removeAuthor.- Parameters:
documentAuthor-
-
removeKeyWord
public void removeKeyWord(String string)
Method removeKeyWord.- Parameters:
string-
-
setAuthor
public void setAuthor(String author)
Set the unique author of the document, usually as a String of "firstName lastName". For more authors, you could use the <authors/> tag.- Parameters:
author-
-
setAuthors
public void setAuthors(List<DocumentAuthor> authors)
Set the authors of the document. The names of the entities that are primarily responsible for the content of the document.- Parameters:
authors-
-
setConfidential
public void setConfidential(boolean confidential)
Set whether the content of the document is in some sense confidential.- Parameters:
confidential-
-
setCreationDate
public void setCreationDate(Date creationDate)
Set the date and time when the document was created initially. Use the ISO 8601 format "yyyy-MM-dd'T'HH:mm:ss.SSS" in xml.- Parameters:
creationDate-
-
setCreationdate
public void setCreationdate(String creationdate)
Set the date as String (recommended format is ISO 8601) when the document was created initially. Only used ifcreationDateis not set.- Parameters:
creationdate-- Since:
- 1.1.1.
-
setCreator
public void setCreator(String creator)
Set the name of the person who last modified the document.- Parameters:
creator-
-
setDate
public void setDate(Date date)
Set the date and time when the document was last modified. Use the ISO 8601 format "yyyy-MM-dd'T'HH:mm:ss.SSS" in xml.- Parameters:
date-
-
setDescription
public void setDescription(String description)
Set a brief description of the document.- Parameters:
description-
-
setDocumentStatistic
public void setDocumentStatistic(DocumentStatistic documentStatistic)
Set the statistics of the document, for example, the page count, word count, etc.- Parameters:
documentStatistic-
-
setDraft
public void setDraft(boolean draft)
Set whether the content of the document is in some sense preliminary.- Parameters:
draft-
-
setEditingCycles
public void setEditingCycles(long editingCycles)
Set the number of editing cycles the document has been through.- Parameters:
editingCycles-
-
setEditingDuration
public void setEditingDuration(long editingDuration)
Set the total time spent editing the document.- Parameters:
editingDuration-
-
setGenerator
public void setGenerator(String generator)
Set a string that identifies the application or tool that was used to create or last modify the document.- Parameters:
generator-
-
setHyperlinkBehaviour
public void setHyperlinkBehaviour(DocumentHyperlinkBehaviour hyperlinkBehaviour)
Set the hyperlink-behaviour element specifies the default behavior for hyperlinks in the document.- Parameters:
hyperlinkBehaviour-
-
setInitialCreator
public void setInitialCreator(String initialCreator)
Set the name of the person who created the document initially.- Parameters:
initialCreator-
-
setKeyWords
public void setKeyWords(List<String> keyWords)
Set a keyword pertaining to the document. The metadata can contain any number of keyword elements, each element specifying one keyword.- Parameters:
keyWords-
-
setKeywords
public void setKeywords(String keywords)
Deprecated.use the <keyWords/> tag instead of.Set the keywords for the document, usually as a String of comma separated keywords.- Parameters:
keywords-
-
setLanguage
public void setLanguage(String language)
Set the default language of the document. The language is represented by a two or three letter Language Code taken from the ISO 639 standard, optionally followed by a hyphen (-) and a two-letter Country Code taken from the ISO 3166 standard.- Parameters:
language-
-
setModifydate
public void setModifydate(String modifydate)
Set the date as String (recommended format is ISO 8601) when the document was last modified. Only used ifdateis not set.- Parameters:
modifydate-- Since:
- 1.1.1.
-
setPageSize
public void setPageSize(String pageSize)
Set the pagesize of the document. At least "US", "USLetter" and "A4" should be supported.- Parameters:
pageSize-
-
setPrintDate
public void setPrintDate(Date printDate)
Set the date and time when the document was last printed. Use the ISO 8601 format "yyyy-MM-dd'T'HH:mm:ss.SSS" in xml.- Parameters:
printDate-
-
setPrintdate
public void setPrintdate(String printdate)
Set the date as String (recommended format is ISO 8601) when the document was last printed. Only used ifprintDateis not set.- Parameters:
printdate-- Since:
- 1.1.1.
-
setPrintedBy
public void setPrintedBy(String printedBy)
Set the name of the person who last printed the document.- Parameters:
printedBy-
-
setSubject
public void setSubject(String subject)
Set the subject of the document.- Parameters:
subject-
-
setTemplate
public void setTemplate(DocumentTemplate template)
Set a template that was used to create the document.- Parameters:
template-
-
setTitle
public void setTitle(String title)
Set the title of the document.- Parameters:
title-
-
toString
public String toString()
Method toString.
-
getAllKeyWords
public String getAllKeyWords()
- Returns:
- a comma separated String of all defined keyWords.
- Since:
- 1.1.1
- See Also:
getKeywords(),getKeyWords()
-
getAllAuthorNames
public String getAllAuthorNames()
- Returns:
getAuthor()if the unique author name is defined. Otherwise, return all authors full names comma separated.- Since:
- 1.1.1
- See Also:
getAuthor(),getAuthors()
-
getCreationdate
public String getCreationdate()
Get the date and time when the document was created initially.- Returns:
- the
getCreationDate()if setted, formatted using ISO-8601 English format, otherwise return thecreationdate. - Since:
- 1.1.1
- See Also:
getCreationDate()
-
getModifydate
public String getModifydate()
Get the date and time when the document was last modified.- Returns:
- the
getDate()if setted, formatted using ISO-8601 English format, otherwise return themodifydate. - Since:
- 1.1.1
- See Also:
getDate()
-
getPrintdate
public String getPrintdate()
Get the date and time when the document was last printed.- Returns:
- the
getPrintDate()if setted, formatted using ISO-8601 English format, otherwise return theprintdate. - Since:
- 1.1.1
- See Also:
getPrintDate()
-
-