public enum MonochromeConversion extends Enum<MonochromeConversion>
| Enum Constant and Description | 
|---|
| DiffusionDiffusion dithering. | 
| HalfTone_6x6Halftone dithering, 6x6 matrix. | 
| HalfTone_8x8Halftone dithering, 8x8 matrix. | 
| NoneNo dithering. | 
| Modifier and Type | Method and Description | 
|---|---|
| static MonochromeConversion | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static MonochromeConversion[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MonochromeConversion None
public static final MonochromeConversion Diffusion
public static final MonochromeConversion HalfTone_8x8
public static final MonochromeConversion HalfTone_6x6
public static MonochromeConversion[] values()
for (MonochromeConversion c : MonochromeConversion.values()) System.out.println(c);
public static MonochromeConversion valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is null
				© 2016 ZIH Corp. All Rights Reserved.