Enum Constant and Description |
---|
Console
Font that is used for console
|
Default
Default font
|
Default_Bold
Default font (bold)
|
Default_Bold_Italic
Default font (bold and italic)
|
Default_Italic
Default font (italic)
|
DefaultMono
Default mono font
|
DefaultMono_Bold
Default mono font (bold)
|
DefaultMono_Bold_Italic
Default mono font (bold and italic)
|
DefaultMono_Italic
Default mono font (italic)
|
Handdrawn
Handdrawn font (used in journal)
|
Modifier and Type | Method and Description |
---|---|
static Font |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Font[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Font Default
public static final Font Default_Bold
public static final Font Default_Italic
public static final Font Default_Bold_Italic
public static final Font DefaultMono
public static final Font DefaultMono_Bold
public static final Font DefaultMono_Italic
public static final Font DefaultMono_Bold_Italic
public static final Font Handdrawn
public static final Font Console
public static Font[] values()
for (Font c : Font.values()) System.out.println(c);
public static Font 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 null