public enum RenderFormat extends java.lang.Enum<RenderFormat>
Enum Constant and Description |
---|
Bmp
Bitmap format.
|
Gif
Gif format.
|
Jpeg
Jpeg format.
|
Png
Png format.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static RenderFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderFormat Jpeg
public static final RenderFormat Gif
public static final RenderFormat Bmp
public static final RenderFormat Png
public static RenderFormat[] values()
for (RenderFormat c : RenderFormat.values()) System.out.println(c);
public static RenderFormat 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 int getValue()