public static enum RenderHints.DrawingAlgorithm extends Enum<RenderHints.DrawingAlgorithm>
| Enum Constant and Description |
|---|
ANTI_ALIASED
Anti-aliased drawing
|
FAST
Fast drawing, no anti-aliasing
|
| Modifier and Type | Method and Description |
|---|---|
static RenderHints.DrawingAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderHints.DrawingAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderHints.DrawingAlgorithm FAST
public static final RenderHints.DrawingAlgorithm ANTI_ALIASED
public static RenderHints.DrawingAlgorithm[] values()
for (RenderHints.DrawingAlgorithm c : RenderHints.DrawingAlgorithm.values()) System.out.println(c);
public static RenderHints.DrawingAlgorithm 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