public enum PictureColorType extends java.lang.Enum<PictureColorType>
| Enum Constant and Description |
|---|
Automatic
Specifies the default color transformation.
|
BlackAndWhite
Specifies the black-and-white transformation.
|
Grayscale
Specifies the grayscale transformation.
|
Mixed
Mixed transformation.
|
Watermark
Specifies the watermark transformation.
|
| Modifier and Type | Method and Description |
|---|---|
static PictureColorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PictureColorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PictureColorType Automatic
public static final PictureColorType Grayscale
public static final PictureColorType BlackAndWhite
public static final PictureColorType Watermark
public static final PictureColorType Mixed
public static PictureColorType[] values()
for (PictureColorType c : PictureColorType.values()) System.out.println(c);
public static PictureColorType 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