Enum Constant and Description |
---|
DOWN_THEN_OVER
Order pages vertically first, then move horizontally.
|
OVER_THEN_DOWN
Order 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 © 2005-2010 Potix Corporation. All Rights Reserved.