public enum ScrollTo extends java.lang.Enum<ScrollTo>
Enumeration which is used for scrolling operations. Mainly, it is involved in the following methods:
Page.scrollTo(com.github.mkolisnyk.sirius.client.ui.controls.Control, ScrollTo)
Page.scrollTo(String, ScrollTo)
FindBy.scrollDirection()
field.
Each enumeration value defines the sequence of scroll actions to reach some certain control or text. Thus, the meaning of constants are the following:
Enum Constant and Description |
---|
BOTTOM_ONLY |
BOTTOM_TOP |
TOP_BOTTOM |
TOP_ONLY |
Modifier and Type | Method and Description |
---|---|
static ScrollTo |
valueOf(java.lang.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(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