| Enum Constant and Description | 
|---|
| DOWN_THEN_OVEROrder pages vertically first, then move horizontally. | 
| OVER_THEN_DOWNOrder pages horizontally first, then move vertically | 
| Modifier and Type | Method and Description | 
|---|---|
| int | getValue() | 
| static PageOrder | valueOf(int value) | 
| static PageOrder | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static PageOrder[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final PageOrder DOWN_THEN_OVER
public static final PageOrder OVER_THEN_DOWN
public static PageOrder[] values()
for (PageOrder c : PageOrder.values()) System.out.println(c);
public static PageOrder 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 nullpublic int getValue()
public static PageOrder valueOf(int value)
Copyright 2021 The Apache Software Foundation or its licensors, as applicable.