PdfDocumentInfo
Contents
[
Hide
]
Inheritance: java.lang.Object
public class PdfDocumentInfo
This class represents set of metadata for document description.
Constructors
Constructor | Description |
---|---|
PdfDocumentInfo() |
Methods
Method | Description |
---|---|
getKeywords() | Gets keywords of the document. |
setKeywords(String value) | Sets keywords of the document. |
getTitle() | Gets title of the document. |
setTitle(String value) | Sets title of the document. |
getAuthor() | Gets author of the document. |
setAuthor(String value) | Sets author of the document. |
getSubject() | Gets subject of the document. |
setSubject(String value) | Gets or sets subject of the document. |
PdfDocumentInfo()
public PdfDocumentInfo()
getKeywords()
public String getKeywords()
Gets keywords of the document.
Returns: java.lang.String - The keywords of the document.
setKeywords(String value)
public void setKeywords(String value)
Sets keywords of the document.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String | The keywords of the document. |
getTitle()
public String getTitle()
Gets title of the document.
Returns: java.lang.String - The title of the document.
setTitle(String value)
public void setTitle(String value)
Sets title of the document.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String | The title of the document. |
getAuthor()
public String getAuthor()
Gets author of the document.
Returns: java.lang.String - The author of the document.
setAuthor(String value)
public void setAuthor(String value)
Sets author of the document.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String | The author of the document. |
getSubject()
public String getSubject()
Gets subject of the document.
Returns: java.lang.String - The subject of the document.
setSubject(String value)
public void setSubject(String value)
Gets or sets subject of the document.
Parameters:
Parameter | Type | Description |
---|---|---|
value | java.lang.String | The subject of the document. |