public static enum HwmfFont.WmfFontFamilyClass extends java.lang.Enum<HwmfFont.WmfFontFamilyClass>
Enum Constant and Description |
---|
FF_DECORATIVE
Novelty fonts.
|
FF_DONTCARE
The default font is specified, which is implementation-dependent.
|
FF_MODERN
Fonts with constant stroke width, with or without serifs.
|
FF_ROMAN
Fonts with variable stroke widths, which are proportional to the actual widths of
the glyphs, and which have serifs.
|
FF_SCRIPT
Fonts designed to look like handwriting.
|
FF_SWISS
Fonts with variable stroke widths, which are proportional to the actual widths of the
glyphs, and which do not have serifs.
|
Modifier and Type | Method and Description |
---|---|
static HwmfFont.WmfFontFamilyClass |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HwmfFont.WmfFontFamilyClass[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HwmfFont.WmfFontFamilyClass FF_DONTCARE
public static final HwmfFont.WmfFontFamilyClass FF_ROMAN
public static final HwmfFont.WmfFontFamilyClass FF_SWISS
public static final HwmfFont.WmfFontFamilyClass FF_MODERN
public static final HwmfFont.WmfFontFamilyClass FF_SCRIPT
public static final HwmfFont.WmfFontFamilyClass FF_DECORATIVE
public static HwmfFont.WmfFontFamilyClass[] values()
for (HwmfFont.WmfFontFamilyClass c : HwmfFont.WmfFontFamilyClass.values()) System.out.println(c);
public static HwmfFont.WmfFontFamilyClass 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 nullCopyright 2017 The Apache Software Foundation or its licensors, as applicable.