Class SplitPDFParams
- java.lang.Object
-
- com.adobe.pdfservices.operation.pdfjobs.params.splitpdf.SplitPDFParams
-
- All Implemented Interfaces:
PDFServicesJobParams
public class SplitPDFParams extends Object implements PDFServicesJobParams
Parameters for splitting a pdf usingSplitPDFJob.
-
-
Constructor Summary
Constructors Constructor Description SplitPDFParams()Creates an instance ofSplitPDFParamsto be used inSplitPDFJob.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetFileCount()Returns the file count to be used for splitting pages.IntegergetPageCount()Returns the page count to be used for splitting pages.PageRangesgetPageRanges()Returns thePageRangesto be used for splitting pages.voidsetFileCount(Integer fileCount)Sets the file count to be used for splitting pages.voidsetPageCount(Integer pageCount)Sets the page count to be used for splitting pages.voidsetPageRanges(PageRanges pageRanges)Sets thePageRangesto be used for splitting pages.
-
-
-
Constructor Detail
-
SplitPDFParams
public SplitPDFParams()
Creates an instance ofSplitPDFParamsto be used inSplitPDFJob.
-
-
Method Detail
-
setPageRanges
public void setPageRanges(PageRanges pageRanges)
Sets thePageRangesto be used for splitting pages.- Parameters:
pageRanges- thePageRangesto be used for splitting pages; can not be null.
-
setPageCount
public void setPageCount(Integer pageCount)
Sets the page count to be used for splitting pages.- Parameters:
pageCount- the page count to be used for splitting pages; can not be null.
-
setFileCount
public void setFileCount(Integer fileCount)
Sets the file count to be used for splitting pages.- Parameters:
fileCount- the file count to be used for splitting pages; can not be null.
-
getPageRanges
public PageRanges getPageRanges()
Returns thePageRangesto be used for splitting pages.- Returns:
- the
PageRangesto be used for splitting pages
-
getPageCount
public Integer getPageCount()
Returns the page count to be used for splitting pages.- Returns:
- the page count to be used for splitting pages
-
getFileCount
public Integer getFileCount()
Returns the file count to be used for splitting pages.- Returns:
- the file count to be used for splitting pages
-
-