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 ofSplitPDFParams
to be used inSplitPDFJob
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getFileCount()
Returns the file count to be used for splitting pages.Integer
getPageCount()
Returns the page count to be used for splitting pages.PageRanges
getPageRanges()
Returns thePageRanges
to be used for splitting pages.void
setFileCount(Integer fileCount)
Sets the file count to be used for splitting pages.void
setPageCount(Integer pageCount)
Sets the page count to be used for splitting pages.void
setPageRanges(PageRanges pageRanges)
Sets thePageRanges
to be used for splitting pages.
-
-
-
Constructor Detail
-
SplitPDFParams
public SplitPDFParams()
Creates an instance ofSplitPDFParams
to be used inSplitPDFJob
.
-
-
Method Detail
-
setPageRanges
public void setPageRanges(PageRanges pageRanges)
Sets thePageRanges
to be used for splitting pages.- Parameters:
pageRanges
- thePageRanges
to 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 thePageRanges
to be used for splitting pages.- Returns:
- the
PageRanges
to 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
-
-