Package com.itextpdf.pdfua
Class PdfUAConfig
- java.lang.Object
-
- com.itextpdf.pdfua.PdfUAConfig
-
public class PdfUAConfig extends java.lang.Object
Class that holds the configuration for the PDF/UA document.
-
-
Field Summary
Fields Modifier and Type Field Description private PdfUAConformance
conformance
private java.lang.String
language
private java.lang.String
title
-
Constructor Summary
Constructors Constructor Description PdfUAConfig(PdfUAConformance conformance, java.lang.String title, java.lang.String language)
Creates a new PdfUAConfig instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PdfUAConformance
getConformance()
Gets the UA conformance.java.lang.String
getLanguage()
Gets the language.java.lang.String
getTitle()
Gets the title.
-
-
-
Field Detail
-
conformance
private final PdfUAConformance conformance
-
title
private final java.lang.String title
-
language
private final java.lang.String language
-
-
Constructor Detail
-
PdfUAConfig
public PdfUAConfig(PdfUAConformance conformance, java.lang.String title, java.lang.String language)
Creates a new PdfUAConfig instance.- Parameters:
conformance
- the conformance of the PDF/UA documenttitle
- the title of the PDF/UA documentlanguage
- the language of the PDF/UA document
-
-
Method Detail
-
getConformance
public PdfUAConformance getConformance()
Gets the UA conformance.- Returns:
- The
PdfUAConformance
.
-
getTitle
public java.lang.String getTitle()
Gets the title.- Returns:
- The title.
-
getLanguage
public java.lang.String getLanguage()
Gets the language.- Returns:
- The language.
-
-