Package io.scanbot.sdk.pdfgeneration
Class PdfAttributes
- java.lang.Object
-
- io.scanbot.sdk.pdfgeneration.PdfAttributes
-
public class PdfAttributes extends java.lang.ObjectPDF attributes.
-
-
Constructor Summary
Constructors Constructor Description PdfAttributes()Constructs PdfAttributes with default parameters.PdfAttributes(java.lang.String author, java.lang.String creator, java.lang.String title, java.lang.String subject, java.lang.String keywords)Constructs PdfAttributes with the given params.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetAuthor()Getter for author field.java.lang.StringgetCreator()Getter for creator field.java.lang.StringgetKeywords()Getter for keywords field.java.lang.StringgetSubject()Getter for subject field.java.lang.StringgetTitle()Getter for title field.voidsetAuthor(java.lang.String author)Setter for author field.voidsetCreator(java.lang.String creator)Setter for creator field.voidsetKeywords(java.lang.String keywords)Setter for keywords field.voidsetSubject(java.lang.String subject)Setter for subject field.voidsetTitle(java.lang.String title)Setter for title field.
-
-
-
Constructor Detail
-
PdfAttributes
public PdfAttributes(java.lang.String author, java.lang.String creator, java.lang.String title, java.lang.String subject, java.lang.String keywords)Constructs PdfAttributes with the given params.- Parameters:
author- Author. Default is "Created with Scanbot SDK"creator- Creator. Default is ""title- Title. Default is ""subject- Subject. Default is ""keywords- Keywords. Default is ""
-
PdfAttributes
public PdfAttributes()
Constructs PdfAttributes with default parameters.
-
-
Method Detail
-
getAuthor
public java.lang.String getAuthor()
Getter for author field. See constructor documentation for more information about the field.- Returns:
- author
-
setAuthor
public void setAuthor(java.lang.String author)
Setter for author field. See constructor documentation for more information about the field.- Parameters:
author- Value to set.
-
getCreator
public java.lang.String getCreator()
Getter for creator field. See constructor documentation for more information about the field.- Returns:
- creator
-
setCreator
public void setCreator(java.lang.String creator)
Setter for creator field. See constructor documentation for more information about the field.- Parameters:
creator- Value to set.
-
getTitle
public java.lang.String getTitle()
Getter for title field. See constructor documentation for more information about the field.- Returns:
- title
-
setTitle
public void setTitle(java.lang.String title)
Setter for title field. See constructor documentation for more information about the field.- Parameters:
title- Value to set.
-
getSubject
public java.lang.String getSubject()
Getter for subject field. See constructor documentation for more information about the field.- Returns:
- subject
-
setSubject
public void setSubject(java.lang.String subject)
Setter for subject field. See constructor documentation for more information about the field.- Parameters:
subject- Value to set.
-
getKeywords
public java.lang.String getKeywords()
Getter for keywords field. See constructor documentation for more information about the field.- Returns:
- keywords
-
setKeywords
public void setKeywords(java.lang.String keywords)
Setter for keywords field. See constructor documentation for more information about the field.- Parameters:
keywords- Value to set.
-
-