public enum AntiAliasingType extends java.lang.Enum<AntiAliasingType>
Modifier and Type | Method and Description |
---|---|
abstract void |
apply(java.awt.Graphics2D g) |
static AntiAliasingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AntiAliasingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AntiAliasingType NONE
public static final AntiAliasingType FAST
public static final AntiAliasingType DEFAULT
public static final AntiAliasingType BEST
public static AntiAliasingType[] values()
for (AntiAliasingType c : AntiAliasingType.values()) System.out.println(c);
public static AntiAliasingType 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 abstract void apply(java.awt.Graphics2D g)