public enum Rasterizer extends Enum<Rasterizer>
| Enum Constant and Description |
|---|
BATIK |
SALAMANDER |
| Modifier and Type | Method and Description |
|---|---|
abstract BufferedImage |
render(Graphviz graphviz,
Consumer<Graphics2D> graphicsConfigurer,
String svg) |
static Rasterizer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Rasterizer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rasterizer SALAMANDER
public static final Rasterizer BATIK
public static Rasterizer[] values()
for (Rasterizer c : Rasterizer.values()) System.out.println(c);
public static Rasterizer 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 nullpublic abstract BufferedImage render(Graphviz graphviz, Consumer<Graphics2D> graphicsConfigurer, String svg)
Copyright © 2015–2017. All rights reserved.