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