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