public static enum Dot.DotFormat extends java.lang.Enum<Dot.DotFormat>
Enum Constant and Description |
---|
DOT |
EPS |
GIF |
JPG |
PNG |
PS |
PS2 |
SVG |
SVGZ |
XDOT |
Modifier and Type | Field and Description |
---|---|
java.lang.String |
extension |
Dot.FileType |
fileType |
Modifier and Type | Method and Description |
---|---|
static Dot.DotFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Dot.DotFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dot.DotFormat DOT
public static final Dot.DotFormat PNG
public static final Dot.DotFormat JPG
public static final Dot.DotFormat GIF
public static final Dot.DotFormat PS
public static final Dot.DotFormat PS2
public static final Dot.DotFormat EPS
public static final Dot.DotFormat XDOT
public static final Dot.DotFormat SVG
public static final Dot.DotFormat SVGZ
public final Dot.FileType fileType
public final java.lang.String extension
public static Dot.DotFormat[] values()
for (Dot.DotFormat c : Dot.DotFormat.values()) System.out.println(c);
public static Dot.DotFormat 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 null