public enum PrintMultipageLayout extends java.lang.Enum<PrintMultipageLayout>
| Enum Constant and Description |
|---|
CLOCKWISE_FROM_BOTTOM_LEFT
clockwise From Bottom Left
|
CLOCKWISE_FROM_BOTTOM_RIGHT
clockwise From Bottom Right
|
CLOCKWISE_FROM_TOP_LEFT
clockwise From Top Left
|
CLOCKWISE_FROM_TOP_RIGHT
clockwise From Top Right
|
COUNTERCLOCKWISE_FROM_BOTTOM_LEFT
counterclockwise From Bottom Left
|
COUNTERCLOCKWISE_FROM_BOTTOM_RIGHT
counterclockwise From Bottom Right
|
COUNTERCLOCKWISE_FROM_TOP_LEFT
counterclockwise From Top Left
|
COUNTERCLOCKWISE_FROM_TOP_RIGHT
counterclockwise From Top Right
|
UNEXPECTED_VALUE
For PrintMultipageLayout values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
| Modifier and Type | Method and Description |
|---|---|
static PrintMultipageLayout |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrintMultipageLayout[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrintMultipageLayout CLOCKWISE_FROM_TOP_LEFT
public static final PrintMultipageLayout COUNTERCLOCKWISE_FROM_TOP_LEFT
public static final PrintMultipageLayout COUNTERCLOCKWISE_FROM_TOP_RIGHT
public static final PrintMultipageLayout CLOCKWISE_FROM_TOP_RIGHT
public static final PrintMultipageLayout COUNTERCLOCKWISE_FROM_BOTTOM_LEFT
public static final PrintMultipageLayout CLOCKWISE_FROM_BOTTOM_LEFT
public static final PrintMultipageLayout COUNTERCLOCKWISE_FROM_BOTTOM_RIGHT
public static final PrintMultipageLayout CLOCKWISE_FROM_BOTTOM_RIGHT
public static final PrintMultipageLayout UNKNOWN_FUTURE_VALUE
public static final PrintMultipageLayout UNEXPECTED_VALUE
public static PrintMultipageLayout[] values()
for (PrintMultipageLayout c : PrintMultipageLayout.values()) System.out.println(c);
public static PrintMultipageLayout 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 null