public static enum HwmfFont.WmfFontQuality extends java.lang.Enum<HwmfFont.WmfFontQuality>
Enum Constant and Description |
---|
ANTIALIASED_QUALITY
Specifies that anti-aliasing SHOULD be used when rendering text, if the font supports it.
|
CLEARTYPE_QUALITY
Specifies that ClearType anti-aliasing SHOULD be used when rendering text, if the font supports it.
|
DEFAULT_QUALITY
Specifies that the character quality of the font does not matter, so DRAFT_QUALITY can be used.
|
DRAFT_QUALITY
Specifies that the character quality of the font is less important than the
matching of logical attribuetes.
|
NONANTIALIASED_QUALITY
Specifies that anti-aliasing SHOULD NOT be used when rendering text.
|
PROOF_QUALITY
Specifies that the character quality of the font is more important than the
matching of logical attributes.
|
Modifier and Type | Method and Description |
---|---|
static HwmfFont.WmfFontQuality |
valueOf(int flag) |
static HwmfFont.WmfFontQuality |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HwmfFont.WmfFontQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HwmfFont.WmfFontQuality DEFAULT_QUALITY
public static final HwmfFont.WmfFontQuality DRAFT_QUALITY
public static final HwmfFont.WmfFontQuality PROOF_QUALITY
public static final HwmfFont.WmfFontQuality NONANTIALIASED_QUALITY
public static final HwmfFont.WmfFontQuality ANTIALIASED_QUALITY
public static final HwmfFont.WmfFontQuality CLEARTYPE_QUALITY
public static HwmfFont.WmfFontQuality[] values()
for (HwmfFont.WmfFontQuality c : HwmfFont.WmfFontQuality.values()) System.out.println(c);
public static HwmfFont.WmfFontQuality 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 static HwmfFont.WmfFontQuality valueOf(int flag)
Copyright 2020 The Apache Software Foundation or its licensors, as applicable.