public enum Overflow extends java.lang.Enum<Overflow>
Enum Constant and Description |
---|
AUTO
Provides a scrolling mechanism for overflowing boxes.
|
ERROR_IF_OVERFLOW
Implies the same as "hidden", but with an error indicated.
|
HIDDEN
The content is clipped, and no scrolling mechanism is provided.
|
REPEAT
The meaning of this value is unclear.
|
SCROLL
The content is clipped, and a scrolling mechanism is provided.
|
VISIBLE
The content is not clipped, that is, it may be rendered outside of its
area.
|
Modifier and Type | Method and Description |
---|---|
static Overflow |
valueOf(java.lang.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 ERROR_IF_OVERFLOW
public static final Overflow REPEAT
public static final Overflow AUTO
public static Overflow[] values()
for (Overflow c : Overflow.values()) System.out.println(c);
public static Overflow 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 nullThis documentation was created 2017-01-24 at 21:26 GMT by The aXSL Group and may be freely copied. See license for details.