Class Metadata_Api
java.lang.Object
com.ironsoftware.ironpdf.internal.staticapi.Metadata_Api
The type Metadata api.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic String
getAuthor
(InternalPdfDocument internalPdfDocument) Gets the Author of the document.static String
getCreationDate
(InternalPdfDocument internalPdfDocument) Gets the PDF file creation DateTime.static String
getCreator
(InternalPdfDocument internalPdfDocument) Gets the Creator of the document.static String
getKeywords
(InternalPdfDocument internalPdfDocument) Gets Keywords of the document.static String
getMetadata
(InternalPdfDocument internalPdfDocument, String key) Gets any metadata value of the document form given key.static String
getModifiedDate
(InternalPdfDocument internalPdfDocument) Gets the PDF file last-modified DateTime.static String
getProducer
(InternalPdfDocument internalPdfDocument) Gets the Producer of the document.static String
getSubject
(InternalPdfDocument internalPdfDocument) Gets Subject of the document.static String
getTitle
(InternalPdfDocument internalPdfDocument) Gets the Title of the document.static void
removeMetadata
(InternalPdfDocument internalPdfDocument, String key) Method for removing Metadata property by its name.static void
setAuthor
(InternalPdfDocument internalPdfDocument, String value) Sets the Author of the document.static void
setCreationDate
(InternalPdfDocument internalPdfDocument, String value) Sets the PDF file creation DateTime.static void
setCreator
(InternalPdfDocument internalPdfDocument, String value) Sets the Creator of the document.static void
setKeywords
(InternalPdfDocument internalPdfDocument, String value) Sets Keywords of the document.static void
setMetadata
(InternalPdfDocument internalPdfDocument, String key, String value) Sets any metadata value of the document form given key.static void
setModifiedDate
(InternalPdfDocument internalPdfDocument, String value) Gets the PDF file last-modified DateTime.static void
setProducer
(InternalPdfDocument internalPdfDocument, String value) Sets the Producer of the document.static void
setSubject
(InternalPdfDocument internalPdfDocument, String value) Sets the Subject of the document.static void
setTitle
(InternalPdfDocument internalPdfDocument, String value) Sets the Title of the document.
-
Constructor Details
-
Metadata_Api
public Metadata_Api()
-
-
Method Details
-
getAuthor
Gets the Author of the document.- Parameters:
internalPdfDocument
- the internal pdf document- Returns:
- the author
-
getMetadata
Gets any metadata value of the document form given key.- Parameters:
internalPdfDocument
- the internal pdf documentkey
- the key- Returns:
- the metadata
-
setAuthor
Sets the Author of the document.- Parameters:
internalPdfDocument
- the internal pdf documentvalue
- the value
-
setMetadata
Sets any metadata value of the document form given key.- Parameters:
internalPdfDocument
- the internal pdf documentkey
- the keyvalue
- the value
-
getCreationDate
Gets the PDF file creation DateTime.- Parameters:
internalPdfDocument
- the internal pdf document- Returns:
- the creation date
-
setCreationDate
Sets the PDF file creation DateTime.- Parameters:
internalPdfDocument
- the internal pdf documentvalue
- the value
-
getModifiedDate
Gets the PDF file last-modified DateTime.- Parameters:
internalPdfDocument
- the internal pdf document- Returns:
- the modified date
-
setModifiedDate
Gets the PDF file last-modified DateTime.- Parameters:
internalPdfDocument
- the internal pdf documentvalue
- the value
-
getCreator
Gets the Creator of the document.- Parameters:
internalPdfDocument
- the internal pdf document- Returns:
- the creator
-
setCreator
Sets the Creator of the document.- Parameters:
internalPdfDocument
- the internal pdf documentvalue
- the value
-
getKeywords
Gets Keywords of the document. This helps search indexes and operating systems correctly index the PDF.- Parameters:
internalPdfDocument
- the internal pdf document- Returns:
- the keywords
-
setKeywords
Sets Keywords of the document. This helps search indexes and operating systems correctly index the PDF.- Parameters:
internalPdfDocument
- the internal pdf documentvalue
- the value
-
getProducer
Gets the Producer of the document.- Parameters:
internalPdfDocument
- the internal pdf document- Returns:
- the producer
-
setProducer
Sets the Producer of the document.- Parameters:
internalPdfDocument
- the internal pdf documentvalue
- the value
-
getSubject
Gets Subject of the document. This helps search indexes and operating systems correctly index the PDF, and may appear in PDF viewer software.- Parameters:
internalPdfDocument
- the internal pdf document- Returns:
- the subject
-
setSubject
Sets the Subject of the document. This helps search indexes and operating systems correctly index the PDF, and may appear in PDF viewer software.- Parameters:
internalPdfDocument
- the internal pdf documentvalue
- the value
-
getTitle
Gets the Title of the document. This helps search indexes and operating systems correctly index the PDF, and may appear in PDF viewer software.- Parameters:
internalPdfDocument
- the internal pdf document- Returns:
- the title
-
setTitle
Sets the Title of the document. This helps search indexes and operating systems correctly index the PDF, and may appear in PDF viewer software.- Parameters:
internalPdfDocument
- the internal pdf documentvalue
- the value
-
removeMetadata
Method for removing Metadata property by its name.- Parameters:
internalPdfDocument
- the internal pdf documentkey
- The name of the property.
-