public enum Dithering extends Enum<Dithering>
| Enum Constant and Description |
|---|
DEFAULT
No change to existing setting.
|
DISABLE
Disable image dithering.
|
ENABLE
Enable image dithering.
|
| Modifier and Type | Method and Description |
|---|---|
static Dithering |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dithering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dithering DEFAULT
RenderingHints.VALUE_DITHER_DEFAULTpublic static final Dithering DISABLE
RenderingHints.VALUE_DITHER_DISABLEpublic static final Dithering ENABLE
RenderingHints.VALUE_DITHER_ENABLEpublic static Dithering[] values()
for (Dithering c : Dithering.values()) System.out.println(c);
public static Dithering 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