public enum SvgTargets extends Enum<SvgTargets>
Conversion targets with associated Inkscape CLI option.
| Enum Constant and Description |
|---|
emf
EMF as target.
|
eps
EPS as target.
|
pdf
PDF as target, optionally with PDF version.
|
png
PNG as target, optionally with DPI.
|
ps
PS as target, optionally with PS version.
|
svg
SVG (plain) as target.
|
wmf
WMF as target.
|
| Modifier and Type | Method and Description |
|---|---|
static SvgTargets |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SvgTargets[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SvgTargets svg
SVG (plain) as target.
public static final SvgTargets pdf
PDF as target, optionally with PDF version.
public static final SvgTargets emf
EMF as target.
public static final SvgTargets wmf
WMF as target.
public static final SvgTargets ps
PS as target, optionally with PS version.
public static final SvgTargets eps
EPS as target.
public static final SvgTargets png
PNG as target, optionally with DPI.
public static SvgTargets[] values()
for (SvgTargets c : SvgTargets.values()) System.out.println(c);
public static SvgTargets valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2012–2017. All rights reserved.