Package com.teamdev.jxbrowser.print
Interface Capabilities
public interface Capabilities
The capabilities of a printer.
- Since:
- 7.13
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
Returnstrue
if 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 supportedDuplexMode
values.default int
Returns the maximum number of copies that the printer can make.Returns an immutable set of the supportedPaperSize
values.
-
Method Details
-
canCollate
default boolean canCollate()Returnstrue
if 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 supportedDuplexMode
values. -
paperSizes
Returns an immutable set of the supportedPaperSize
values. -
colorModels
Returns an immutable set of the supported color models.
-