public static enum Command.ImageAlgorithm extends Enum<Command.ImageAlgorithm>
Enum Constant and Description |
---|
ATKINSON_DITHER
Atkinson
|
FLOYD_STEINBERG_DITHER
Floyd-Steinberg
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static Command.ImageAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Command.ImageAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Command.ImageAlgorithm FLOYD_STEINBERG_DITHER
public static final Command.ImageAlgorithm ATKINSON_DITHER
public static Command.ImageAlgorithm[] values()
for (Command.ImageAlgorithm c : Command.ImageAlgorithm.values()) System.out.println(c);
public static Command.ImageAlgorithm 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()