public enum RenderingHint extends java.lang.Enum<RenderingHint>
Generally there is a speed vs. quality tradeoff, though the actual behavior is highly dependent on the underlying hardware, drivers, and Java implementation. So, your mileage may vary.
Copyright 2010 Partner Software, Inc.
| Modifier and Type | Method and Description |
|---|---|
static RenderingHint |
forName(java.lang.String name) |
java.lang.String |
getName() |
static RenderingHint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderingHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderingHint FASTEST
public static final RenderingHint DEFAULT
public static final RenderingHint NICEST
public static RenderingHint[] values()
for (RenderingHint c : RenderingHint.values()) System.out.println(c);
public static RenderingHint valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static RenderingHint forName(java.lang.String name)
public java.lang.String getName()