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