public static enum Style.EOverflow extends Enum<Style.EOverflow>
Enum Constant and Description |
---|
OAUTO |
OHIDDEN |
OOVERLAY |
OPAGEDX |
OPAGEDY |
OSCROLL |
OVISIBLE |
Modifier and Type | Method and Description |
---|---|
static Style.EOverflow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.EOverflow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.EOverflow OVISIBLE
public static final Style.EOverflow OHIDDEN
public static final Style.EOverflow OSCROLL
public static final Style.EOverflow OAUTO
public static final Style.EOverflow OOVERLAY
public static final Style.EOverflow OPAGEDX
public static final Style.EOverflow OPAGEDY
public static Style.EOverflow[] values()
for (Style.EOverflow c : Style.EOverflow.values()) System.out.println(c);
public static Style.EOverflow 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 nullRevision 4.0.15 / 20220727-0149