public static enum AWTTerminalFontConfiguration.BoldMode extends Enum<AWTTerminalFontConfiguration.BoldMode>
Enum Constant and Description |
---|
EVERYTHING
All characters with SGR Bold enabled will be rendered using a bold font
|
EVERYTHING_BUT_SYMBOLS
All characters with SGR Bold enabled, except for the characters defined as constants in Symbols class, will
be rendered using a bold font
|
NOTHING
Bold font will not be used for characters with SGR bold enabled
|
Modifier and Type | Method and Description |
---|---|
static AWTTerminalFontConfiguration.BoldMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AWTTerminalFontConfiguration.BoldMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AWTTerminalFontConfiguration.BoldMode EVERYTHING
public static final AWTTerminalFontConfiguration.BoldMode EVERYTHING_BUT_SYMBOLS
public static final AWTTerminalFontConfiguration.BoldMode NOTHING
public static AWTTerminalFontConfiguration.BoldMode[] values()
for (AWTTerminalFontConfiguration.BoldMode c : AWTTerminalFontConfiguration.BoldMode.values()) System.out.println(c);
public static AWTTerminalFontConfiguration.BoldMode 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 © 2016. All rights reserved.