public enum ScrollTo extends Enum<ScrollTo>
| Enum Constant and Description |
|---|
BOTTOM_ONLY |
BOTTOM_TOP |
TOP_BOTTOM |
TOP_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static ScrollTo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScrollTo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScrollTo TOP_ONLY
public static final ScrollTo BOTTOM_ONLY
public static final ScrollTo TOP_BOTTOM
public static final ScrollTo BOTTOM_TOP
public static ScrollTo[] values()
for (ScrollTo c : ScrollTo.values()) System.out.println(c);
public static ScrollTo 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 nullCopyright © 2013-2018. All Rights Reserved.