| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PageOrder>
org.apache.poi.ss.usermodel.PageOrder
public enum PageOrder
Specifies printed page order.
Enum Constant Summary | |
---|---|
DOWN_THEN_OVER Order pages vertically first, then move horizontally. | |
OVER_THEN_DOWN Order pages horizontally first, then move vertically |
Method Summary | |
---|---|
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, inthe order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PageOrder DOWN_THEN_OVER
public static final PageOrder OVER_THEN_DOWN
Method Detail |
---|
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 constantwith the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getValue()
public static PageOrder valueOf(int value)
| |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |