public enum AntiAlias extends Enum<AntiAlias>
| Enum Constant and Description |
|---|
DEFAULT
No change is made to the default anti-aliasing setting.
|
OFF
Anti-aliasing is not enabled.
|
ON
Anti-aliasing is enabled.
|
| Modifier and Type | Method and Description |
|---|---|
static AntiAlias |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AntiAlias[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AntiAlias DEFAULT
RenderingHints.VALUE_ANTIALIAS_DEFAULTpublic static final AntiAlias ON
RenderingHints.VALUE_ANTIALIAS_ONpublic static final AntiAlias OFF
RenderingHints.VALUE_ANTIALIAS_OFFpublic static AntiAlias[] values()
for (AntiAlias c : AntiAlias.values()) System.out.println(c);
public static AntiAlias 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