Class ExtractPDFParams
- java.lang.Object
-
- com.adobe.pdfservices.operation.pdfjobs.params.extractpdf.ExtractPDFParams
-
- All Implemented Interfaces:
PDFServicesJobParams
public class ExtractPDFParams extends Object implements PDFServicesJobParams
Parameters to extract content from PDF usingExtractPDFJob.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExtractPDFParams.BuilderStatic Builder class for Extract PDF Params
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExtractPDFParams.BuilderextractPDFParamsBuilder()Creates a newExtractPDFParams.Builder.BooleangetAddCharInfo()ReturnsBoolean, whether character level information was invoked for operation.List<ExtractElementType>getElementsToExtract()Returns the list of elements (Text and/or Tables) invoked for operationList<ExtractRenditionsElementType>getElementsToExtractRenditions()Returns the list ofExtractRenditionsElementTypeinvoked for job.BooleangetStylingInfo()ReturnsBoolean, whether styling information was invoked for operation.TableStructureTypegetTableStructureType()Returns theTableStructureTypeof the resulting rendition
-
-
-
Method Detail
-
getTableStructureType
public TableStructureType getTableStructureType()
Returns theTableStructureTypeof the resulting rendition- Returns:
- the table structure type
-
getAddCharInfo
public Boolean getAddCharInfo()
ReturnsBoolean, whether character level information was invoked for operation.- Returns:
- the char info boolean
-
getStylingInfo
public Boolean getStylingInfo()
ReturnsBoolean, whether styling information was invoked for operation.- Returns:
- the include styling boolean
-
getElementsToExtractRenditions
public List<ExtractRenditionsElementType> getElementsToExtractRenditions()
Returns the list ofExtractRenditionsElementTypeinvoked for job.- Returns:
- the list of
ExtractRenditionsElementType
-
getElementsToExtract
public List<ExtractElementType> getElementsToExtract()
Returns the list of elements (Text and/or Tables) invoked for operation- Returns:
- the list of elements to extract
-
extractPDFParamsBuilder
public static ExtractPDFParams.Builder extractPDFParamsBuilder()
Creates a newExtractPDFParams.Builder.- Returns:
- a
ExtractPDFParams.Builderinstance
-
-