Class PdfAttributes


  • public class PdfAttributes
    extends java.lang.Object
    PDF 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.String getAuthor()
      Getter for author field.
      java.lang.String getCreator()
      Getter for creator field.
      java.lang.String getKeywords()
      Getter for keywords field.
      java.lang.String getSubject()
      Getter for subject field.
      java.lang.String getTitle()
      Getter for title field.
      void setAuthor​(java.lang.String author)
      Setter for author field.
      void setCreator​(java.lang.String creator)
      Setter for creator field.
      void setKeywords​(java.lang.String keywords)
      Setter for keywords field.
      void setSubject​(java.lang.String subject)
      Setter for subject field.
      void setTitle​(java.lang.String title)
      Setter for title field.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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.