public static enum PEFHandler.Alignment extends java.lang.Enum<PEFHandler.Alignment>
| Enum Constant and Description |
|---|
ABORT
Abort processing if paper is wider than the contents of the file
|
CENTER_INNER
Align center, round off towards the inner edge of the page
|
CENTER_OUTER
Align center, round off towards the outer edge of the page
|
INNER
Align to the inner edge of the page
|
LEFT
Align left
|
OUTER
Align to the outer edge of the page
|
RIGHT
Align right
|
| Modifier and Type | Method and Description |
|---|---|
static PEFHandler.Alignment |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PEFHandler.Alignment[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PEFHandler.Alignment LEFT
public static final PEFHandler.Alignment RIGHT
public static final PEFHandler.Alignment INNER
public static final PEFHandler.Alignment OUTER
public static final PEFHandler.Alignment CENTER_INNER
public static final PEFHandler.Alignment CENTER_OUTER
public static final PEFHandler.Alignment ABORT
public static PEFHandler.Alignment[] values()
for (PEFHandler.Alignment c : PEFHandler.Alignment.values()) System.out.println(c);
public static PEFHandler.Alignment 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