public enum EFontWeight extends java.lang.Enum<EFontWeight>
| Enum Constant and Description |
|---|
_100 |
_200 |
_300 |
_400 |
_500 |
_600 |
_700 |
_800 |
_900 |
BOLD |
BOLDER |
INHERIT |
INITIAL |
LIGHTER |
NORMAL |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static EFontWeight |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EFontWeight[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EFontWeight NORMAL
public static final EFontWeight BOLD
public static final EFontWeight BOLDER
public static final EFontWeight LIGHTER
public static final EFontWeight INITIAL
public static final EFontWeight INHERIT
public static final EFontWeight _100
public static final EFontWeight _200
public static final EFontWeight _300
public static final EFontWeight _400
public static final EFontWeight _500
public static final EFontWeight _600
public static final EFontWeight _700
public static final EFontWeight _800
public static final EFontWeight _900
public static EFontWeight[] values()
for (EFontWeight c : EFontWeight.values()) System.out.println(c);
public static EFontWeight 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<EFontWeight>Copyright © 2011–2021. All rights reserved.