Package io.scanbot.pdf.model
Class PdfAttributes
-
- All Implemented Interfaces:
-
android.os.Parcelable
public final class PdfAttributes implements Parcelable
Represents the PDF attributes (document metadata - author, creator, title, etc.).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
PdfAttributes.Companion
-
Method Summary
Modifier and Type Method Description final String
getAuthor()
final String
getCreator()
final String
getTitle()
final String
getSubject()
final String
getKeywords()
-
-
Constructor Detail
-
PdfAttributes
PdfAttributes(String author, String creator, String title, String subject, String keywords)
- Parameters:
author
- The author of the PDF document.creator
- The creator of the PDF document.title
- The title of the PDF document.subject
- The subject of the PDF document.keywords
- The keywords of the PDF document.
-
-
Method Detail
-
getCreator
final String getCreator()
-
getSubject
final String getSubject()
-
getKeywords
final String getKeywords()
-
-
-
-