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