public enum FontFamily extends Enum<FontFamily>
| Enum Constant and Description |
|---|
ARIAL |
TAHOMA |
TIMES_NEW_ROMAN |
VERDANA |
| Modifier and Type | Field and Description |
|---|---|
static FontFamily |
DEFAULT
The default setting when the
Format for FontFamily is null; |
| Modifier and Type | Method and Description |
|---|---|
String |
getFontName() |
Set<String> |
getTraits() |
static FontFamily |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FontFamily[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontFamily ARIAL
public static final FontFamily TAHOMA
public static final FontFamily TIMES_NEW_ROMAN
public static final FontFamily VERDANA
public static final FontFamily DEFAULT
Format for FontFamily is null;public static FontFamily[] values()
for (FontFamily c : FontFamily.values()) System.out.println(c);
public static 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 nullpublic String getFontName()
Copyright © 2014–2017 Smartsheet. All rights reserved.