Package com.teamdev.jxbrowser.print
Interface Capabilities
public interface Capabilities
The capabilities of a printer.
- Since:
- 7.13
-
Method Summary
Modifier and TypeMethodDescriptiondefault booleanReturnstrueif the printer supports collate printing.default Set<ColorModel>Returns an immutable set of the supported color models.default Set<DuplexMode>Returns an immutable set of the supportedDuplexModevalues.default intReturns the maximum number of copies that the printer can make.Returns an immutable set of the supportedPaperSizevalues.
-
Method Details
-
canCollate
default boolean canCollate()Returnstrueif the printer supports collate printing. -
maxCopies
default int maxCopies()Returns the maximum number of copies that the printer can make. -
duplexModes
Returns an immutable set of the supportedDuplexModevalues. -
paperSizes
Returns an immutable set of the supportedPaperSizevalues. -
colorModels
Returns an immutable set of the supported color models.
-