public enum ScrollStrategy extends Enum<ScrollStrategy>
| Enum Constant and Description |
|---|
VIEWPORT_ONLY |
WHOLE_PAGE |
WHOLE_PAGE_SCROLL_AND_STITCH |
| Modifier and Type | Method and Description |
|---|---|
static ScrollStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScrollStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScrollStrategy VIEWPORT_ONLY
public static final ScrollStrategy WHOLE_PAGE
public static final ScrollStrategy WHOLE_PAGE_SCROLL_AND_STITCH
public static ScrollStrategy[] values()
for (ScrollStrategy c : ScrollStrategy.values()) System.out.println(c);
public static ScrollStrategy 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 © 2020. All rights reserved.