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 PdfUAConformanceLevel
conformanceLevel
private java.lang.String
language
private java.lang.String
title
-
Constructor Summary
Constructors Constructor Description PdfUAConfig(PdfUAConformanceLevel conformanceLevel, 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 PdfUAConformanceLevel
getConformanceLevel()
Gets the conformance level.java.lang.String
getLanguage()
Gets the language.java.lang.String
getTitle()
Gets the title.
-
-
-
Field Detail
-
conformanceLevel
private final PdfUAConformanceLevel conformanceLevel
-
title
private final java.lang.String title
-
language
private final java.lang.String language
-
-
Constructor Detail
-
PdfUAConfig
public PdfUAConfig(PdfUAConformanceLevel conformanceLevel, java.lang.String title, java.lang.String language)
Creates a new PdfUAConfig instance.- Parameters:
conformanceLevel
- The conformance level of the PDF/UA document.title
- The title of the PDF/UA document.language
- The language of the PDF/UA document.
-
-
Method Detail
-
getConformanceLevel
public PdfUAConformanceLevel getConformanceLevel()
Gets the conformance level.- Returns:
- The
PdfUAConformanceLevel
.
-
getTitle
public java.lang.String getTitle()
Gets the title.- Returns:
- The title.
-
getLanguage
public java.lang.String getLanguage()
Gets the language.- Returns:
- The language.
-
-