public enum SmoothingMode extends Enum<SmoothingMode>
| Enum Constant and Description |
|---|
ANTIALIAS
Antialias smoothing mode
|
HIGH_QUALITY
High quality, but low speed smoothing mode
|
HIGH_SPEED
High speed, but low quality smoothing mode
|
| Modifier and Type | Method and Description |
|---|---|
static SmoothingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SmoothingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SmoothingMode ANTIALIAS
public static final SmoothingMode HIGH_QUALITY
public static final SmoothingMode HIGH_SPEED
public static SmoothingMode[] values()
for (SmoothingMode c : SmoothingMode.values()) System.out.println(c);
public static SmoothingMode 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 nullCopyright © 2025 Aspose. All Rights Reserved.