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