public static enum UIHints.TextFontHint extends java.lang.Enum<UIHints.TextFontHint>
Enum Constant and Description |
---|
DEFAULT
No special font will be applied
|
FIXED_WIDTH
A fixed width (eclipse platform, Basic Text font) will be applied
|
Modifier and Type | Method and Description |
---|---|
static UIHints.TextFontHint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UIHints.TextFontHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UIHints.TextFontHint DEFAULT
public static final UIHints.TextFontHint FIXED_WIDTH
public static UIHints.TextFontHint[] values()
for (UIHints.TextFontHint c : UIHints.TextFontHint.values()) System.out.println(c);
public static UIHints.TextFontHint 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