public enum ColorRendering extends Enum<ColorRendering>
| Enum Constant and Description |
|---|
DEFAULT
No change in default settings.
|
QUALITY
Optimized for quality.
|
SPEED
Optimized for speed.
|
| Modifier and Type | Method and Description |
|---|---|
static ColorRendering |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColorRendering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorRendering DEFAULT
public static final ColorRendering SPEED
RenderingHints.VALUE_COLOR_RENDER_SPEEDpublic static final ColorRendering QUALITY
public static ColorRendering[] values()
for (ColorRendering c : ColorRendering.values()) System.out.println(c);
public static ColorRendering 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