public enum EGraphvizOutputFormat extends java.lang.Enum<EGraphvizOutputFormat>
Enum Constant and Description |
---|
CANON
canon
|
DOT
dot
|
GIF
gif
|
JPG
jpeg
|
PNG
png
|
PS2
ps2
|
SVG
svg
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription()
Get format description.
|
java.lang.String |
getFileExtension()
Get file extension typically used for this format.
|
static EGraphvizOutputFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EGraphvizOutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EGraphvizOutputFormat CANON
public static final EGraphvizOutputFormat DOT
public static final EGraphvizOutputFormat GIF
public static final EGraphvizOutputFormat JPG
public static final EGraphvizOutputFormat PS2
public static final EGraphvizOutputFormat PNG
public static final EGraphvizOutputFormat SVG
public static EGraphvizOutputFormat[] values()
for (EGraphvizOutputFormat c : EGraphvizOutputFormat.values()) System.out.println(c);
public static EGraphvizOutputFormat valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getDescription()
public java.lang.String getFileExtension()