Package com.saperion.connector.options
Class Targets
- java.lang.Object
-
- com.saperion.connector.options.Targets
-
public final class Targets extends java.lang.Object
Contains constants and static methods to create and work with TargetFormats.
-
-
Field Summary
Fields Modifier and Type Field Description static TargetFormat
BMP
Render to BMP.static java.util.Set<TargetFormat>
DEFAULT_TARGETS
Set of default target formats.static TargetFormat
EPUB
Render to EPUB.static TargetFormat
GIF
Render to JPG.static TargetFormat
HTML
Render to HTML.static TargetFormat
JPEG
Render to JPEG.static TargetFormat
JPG
Render to JPG.static TargetFormat
MHTML
Render to MHTML.static TargetFormat
PBM
Render to PBM.static TargetFormat
PDF
Render to PDF.static TargetFormat
PGM
Render to PGM.static TargetFormat
PNG
Render to PNG.static TargetFormat
PPM
Render to PPM.static TargetFormat
SVG
Render to SVG.static TargetFormat
TIF
Render to TIF.static TargetFormat
TIFF
Render to TIFF.static TargetFormat
XML
Render to XML.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static java.util.Set<TargetFormat>
defineAs(TargetFormat... format)
Creates a set containing the specified target formats.
-
-
-
Field Detail
-
PDF
public static final TargetFormat PDF
Render to PDF.
-
JPG
public static final TargetFormat JPG
Render to JPG.
-
GIF
public static final TargetFormat GIF
Render to JPG.
-
TIFF
public static final TargetFormat TIFF
Render to TIFF.
-
PNG
public static final TargetFormat PNG
Render to PNG.
-
HTML
public static final TargetFormat HTML
Render to HTML.
-
MHTML
public static final TargetFormat MHTML
Render to MHTML.
-
EPUB
public static final TargetFormat EPUB
Render to EPUB.
-
SVG
public static final TargetFormat SVG
Render to SVG.
-
BMP
public static final TargetFormat BMP
Render to BMP.
-
TIF
public static final TargetFormat TIF
Render to TIF.
-
JPEG
public static final TargetFormat JPEG
Render to JPEG.
-
PBM
public static final TargetFormat PBM
Render to PBM.
-
PGM
public static final TargetFormat PGM
Render to PGM.
-
PPM
public static final TargetFormat PPM
Render to PPM.
-
XML
public static final TargetFormat XML
Render to XML.
-
DEFAULT_TARGETS
public static final java.util.Set<TargetFormat> DEFAULT_TARGETS
Set of default target formats.
-
-
Method Detail
-
defineAs
public static java.util.Set<TargetFormat> defineAs(TargetFormat... format)
Creates a set containing the specified target formats.- Parameters:
format
- the target formats- Returns:
- set containing the specified target formats
-
-