Uses of Class
org.pdfbox.pdmodel.common.PDRange

Packages that use PDRange
org.pdfbox.pdmodel.common.function This package contains functions that are available in the PDF specification. 
org.pdfbox.pdmodel.fdf The fdf package will handle all of the logic used for FDF objects inside of the PDF/FDF document. 
org.pdfbox.pdmodel.graphics.color This package deals with colors that are stored in a PDF document. 
 

Uses of PDRange in org.pdfbox.pdmodel.common.function
 

Methods in org.pdfbox.pdmodel.common.function that return PDRange
 PDRange PDStreamFunction.getRangeForOutput(int n)
          This will get the range for a certain output parameters.
 PDRange PDStreamFunction.getDomainForInput(int n)
          This will get the range for a certain input parameter.
 PDRange PDFunctionType0.getEncodeForParameter(int paramNum)
          Get the encode for the input parameter.
 PDRange PDFunctionType0.getDecodeForParameter(int paramNum)
          Get the decode for the input parameter.
abstract  PDRange PDFunction.getRangeForOutput(int n)
          This will get the range for a certain output parameters.
abstract  PDRange PDFunction.getDomainForInput(int n)
          This will get the range for a certain input parameter.
 PDRange PDDictionaryFunction.getRangeForOutput(int n)
          This will get the range for a certain output parameters. This is will never return null. If it is not present then the range 0 to 0 will be returned.
 PDRange PDDictionaryFunction.getDomainForInput(int n)
          This will get the range for a certain input parameter. This is will never return null. If it is not present then the range 0 to 0 will be returned.
 

Methods in org.pdfbox.pdmodel.common.function with parameters of type PDRange
 void PDStreamFunction.setRangeForOutput(PDRange range, int n)
          This will set the a range for output parameter.
 void PDStreamFunction.setDomainForInput(PDRange range, int n)
          This will set the domain for the input values.
 void PDFunctionType0.setEncodeForParameter(int paramNum, PDRange range)
          Set the encode range for the param number.
 void PDFunctionType0.setDecodeForParameter(int paramNum, PDRange range)
          Set the decode range for the param number.
abstract  void PDFunction.setRangeForOutput(PDRange range, int n)
          This will set the a range for output parameter.
abstract  void PDFunction.setDomainForInput(PDRange range, int n)
          This will set the domain for the input values.
 void PDDictionaryFunction.setRangeForOutput(PDRange range, int n)
          This will set the a range for output parameter.
 void PDDictionaryFunction.setDomainForInput(PDRange range, int n)
          This will set the domain for the input values.
 

Uses of PDRange in org.pdfbox.pdmodel.fdf
 

Methods in org.pdfbox.pdmodel.fdf that return PDRange
 PDRange FDFIconFit.getFractionalSpaceToAllocate()
          This is guaranteed to never return null.
 

Methods in org.pdfbox.pdmodel.fdf with parameters of type PDRange
 void FDFIconFit.setFractionalSpaceToAllocate(PDRange space)
          This will set frational space to allocate.
 

Uses of PDRange in org.pdfbox.pdmodel.graphics.color
 

Methods in org.pdfbox.pdmodel.graphics.color that return PDRange
 PDRange PDLab.getARange()
          This will get the valid range for the a component.
 PDRange PDLab.getBRange()
          This will get the valid range for the b component.
 PDRange PDICCBased.getRangeForComponent(int n)
          This will get the range for a certain component number.
 

Methods in org.pdfbox.pdmodel.graphics.color with parameters of type PDRange
 void PDLab.setARange(PDRange range)
          This will set the a range for this color space.
 void PDLab.setBRange(PDRange range)
          This will set the b range for this color space.
 void PDICCBased.setRangeForComponent(PDRange range, int n)
          This will set the a range for this color space.