public static enum BmpHeaderDirectory.RenderingHalftoningAlgorithm extends Enum<BmpHeaderDirectory.RenderingHalftoningAlgorithm>
| Enum Constant and Description |
|---|
ERROR_DIFFUSION
Error Diffusion Halftoning
|
NONE
No halftoning algorithm
|
PANDA
Processing Algorithm for Noncoded Document Acquisition
|
SUPER_CIRCLE
Super-circle Halftoning
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
String |
toString() |
static BmpHeaderDirectory.RenderingHalftoningAlgorithm |
typeOf(int value) |
static BmpHeaderDirectory.RenderingHalftoningAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BmpHeaderDirectory.RenderingHalftoningAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BmpHeaderDirectory.RenderingHalftoningAlgorithm NONE
public static final BmpHeaderDirectory.RenderingHalftoningAlgorithm ERROR_DIFFUSION
public static final BmpHeaderDirectory.RenderingHalftoningAlgorithm PANDA
public static final BmpHeaderDirectory.RenderingHalftoningAlgorithm SUPER_CIRCLE
public static BmpHeaderDirectory.RenderingHalftoningAlgorithm[] values()
for (BmpHeaderDirectory.RenderingHalftoningAlgorithm c : BmpHeaderDirectory.RenderingHalftoningAlgorithm.values()) System.out.println(c);
public static BmpHeaderDirectory.RenderingHalftoningAlgorithm 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 nullpublic int getValue()
public static BmpHeaderDirectory.RenderingHalftoningAlgorithm typeOf(int value)
public String toString()
toString in class Enum<BmpHeaderDirectory.RenderingHalftoningAlgorithm>Copyright © 2002-2020 Drew Noakes. All Rights Reserved.