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