public static enum GraphicsAdaptorFactory.OutputFormat extends Enum<GraphicsAdaptorFactory.OutputFormat>
| Enum Constant and Description |
|---|
EPS
EPS format
|
JPEG
JPEG format
|
PDF
PDF format
|
PNG
PNG format
|
SVG
SVG format
|
| Modifier and Type | Method and Description |
|---|---|
static GraphicsAdaptorFactory.OutputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GraphicsAdaptorFactory.OutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GraphicsAdaptorFactory.OutputFormat SVG
public static final GraphicsAdaptorFactory.OutputFormat PDF
public static final GraphicsAdaptorFactory.OutputFormat EPS
public static final GraphicsAdaptorFactory.OutputFormat PNG
public static final GraphicsAdaptorFactory.OutputFormat JPEG
public static GraphicsAdaptorFactory.OutputFormat[] values()
for (GraphicsAdaptorFactory.OutputFormat c : GraphicsAdaptorFactory.OutputFormat.values()) System.out.println(c);
public static GraphicsAdaptorFactory.OutputFormat 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 null