public static enum Appearance.LabelAppearance.FontWeight extends java.lang.Enum<Appearance.LabelAppearance.FontWeight>
| Enum Constant and Description |
|---|
Bold
Соответствует Typeface.BOLD
|
Medium
Соответствует Typeface.BOLD
|
Regular
Соответствует Typeface.NORMAL
|
| Modifier and Type | Method and Description |
|---|---|
static Appearance.LabelAppearance.FontWeight |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Appearance.LabelAppearance.FontWeight[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Appearance.LabelAppearance.FontWeight Regular
public static final Appearance.LabelAppearance.FontWeight Medium
public static final Appearance.LabelAppearance.FontWeight Bold
public static Appearance.LabelAppearance.FontWeight[] values()
for (Appearance.LabelAppearance.FontWeight c : Appearance.LabelAppearance.FontWeight.values()) System.out.println(c);
public static Appearance.LabelAppearance.FontWeight 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