public static enum RenderingHintsBuilder.Antialias extends Enum<RenderingHintsBuilder.Antialias>
| Enum Constant and Description |
|---|
DEFAULT
默认的抗锯齿
|
OFF
不使用抗锯齿
|
ON
使用抗锯齿
|
| Modifier and Type | Method and Description |
|---|---|
Object |
getValue()
获取值
|
static RenderingHintsBuilder.Antialias |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderingHintsBuilder.Antialias[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderingHintsBuilder.Antialias ON
public static final RenderingHintsBuilder.Antialias OFF
public static final RenderingHintsBuilder.Antialias DEFAULT
public static RenderingHintsBuilder.Antialias[] values()
for (RenderingHintsBuilder.Antialias c : RenderingHintsBuilder.Antialias.values()) System.out.println(c);
public static RenderingHintsBuilder.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 nullpublic Object getValue()
Copyright © 2025. All rights reserved.