public enum ViewingHint extends Enum<ViewingHint>
| Enum Constant and Description |
|---|
CONTINUOUS
Valid on manifest, sequence and range.
|
INDIVIDUALS
Valid on manifest, sequence and range.
|
NON_PAGED
Canvases with this hint must not be presented in a page turning interface, and must be skipped over when
determining the page sequence.
|
PAGED
Valid on manifest, sequence and range.
|
TOP
Only valid on a range.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static ViewingHint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewingHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewingHint CONTINUOUS
public static final ViewingHint INDIVIDUALS
public static final ViewingHint NON_PAGED
public static final ViewingHint PAGED
public static final ViewingHint TOP
public static ViewingHint[] values()
for (ViewingHint c : ViewingHint.values()) System.out.println(c);
public static ViewingHint 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 nullpublic String getValue()
Copyright © 2017. All rights reserved.