public static enum UIHints.TextFontHint extends 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(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(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 © 2015–2018 Cloud Software Group, Inc.. All rights reserved.