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 class
ExtractPDFParams.Builder
Static Builder class for Extract PDF Params
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ExtractPDFParams.Builder
extractPDFParamsBuilder()
Creates a newExtractPDFParams.Builder
.Boolean
getAddCharInfo()
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 ofExtractRenditionsElementType
invoked for job.Boolean
getStylingInfo()
ReturnsBoolean
, whether styling information was invoked for operation.TableStructureType
getTableStructureType()
Returns theTableStructureType
of the resulting rendition
-
-
-
Method Detail
-
getTableStructureType
public TableStructureType getTableStructureType()
Returns theTableStructureType
of 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 ofExtractRenditionsElementType
invoked 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.Builder
instance
-
-