public static enum Overflow.Type extends java.lang.Enum<Overflow.Type>
| Enum Constant and Description |
|---|
auto
If the content is clipped, the browser should display a scroll-bar to
see the rest of the content
|
hidden
The content is clipped, but the browser does not display a scroll-bar
to see the rest of the content
|
scroll
The content is clipped, but the browser displays a scroll-bar to see
the rest of the content
|
visible
The content is not clipped.
|
| Modifier and Type | Method and Description |
|---|---|
static Overflow.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Overflow.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Overflow.Type visible
public static final Overflow.Type hidden
public static final Overflow.Type scroll
public static final Overflow.Type auto
public static Overflow.Type[] values()
for (Overflow.Type c : Overflow.Type.values()) System.out.println(c);
public static Overflow.Type 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