@JsType(namespace="xgl.css") public enum FontStyle extends Enum<FontStyle> implements HasCSSName
Enum Constant and Description |
---|
INHERIT |
INITIAL |
ITALIC |
NORMAL |
OBLIQUE |
UNSET |
Modifier and Type | Method and Description |
---|---|
String |
css() |
static FontStyle |
get(String propertyName) |
static FontStyle |
getDefault() |
static FontStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FontStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FontStyle NORMAL
public static final FontStyle ITALIC
public static final FontStyle OBLIQUE
public static final FontStyle INHERIT
public static final FontStyle INITIAL
public static final FontStyle UNSET
public static FontStyle[] values()
for (FontStyle c : FontStyle.values()) System.out.println(c);
public static FontStyle 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 static FontStyle getDefault()
public String css()
css
in interface HasCSSName
Copyright © 2018 Xalys. All rights reserved.