public static enum RtfHeaderFont.FontFamily extends Enum<RtfHeaderFont.FontFamily>
| Enum Constant and Description |
|---|
BIDI
Arabic, Hebrew, or other bidirectional font, e.g.
|
DECOR
Decorative fonts, e.g.
|
MODERN
Fixed-pitch serif and sans serif fonts, e.g.
|
NIL
Unknown or default fonts (the default).
|
ROMAN
Roman, proportionally spaced serif fonts, e.g.
|
SCRIPT
Script fonts, e.g.
|
SWISS
Swiss, proportionally spaced sans serif fonts, e.g.
|
TECH
Technical, symbol, and mathematical fonts, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static RtfHeaderFont.FontFamily |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RtfHeaderFont.FontFamily[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RtfHeaderFont.FontFamily NIL
public static final RtfHeaderFont.FontFamily ROMAN
public static final RtfHeaderFont.FontFamily SWISS
public static final RtfHeaderFont.FontFamily MODERN
public static final RtfHeaderFont.FontFamily SCRIPT
public static final RtfHeaderFont.FontFamily DECOR
public static final RtfHeaderFont.FontFamily TECH
public static final RtfHeaderFont.FontFamily BIDI
public static RtfHeaderFont.FontFamily[] values()
for (RtfHeaderFont.FontFamily c : RtfHeaderFont.FontFamily.values()) System.out.println(c);
public static RtfHeaderFont.FontFamily 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 © 2010–2015 Tutego. All rights reserved.