public enum PageTilingMode extends java.lang.Enum<PageTilingMode>
| Enum Constant and Description |
|---|
NONE
Print all pages normally
|
TILE_ALL_PAGES
Use tiling settings for all pages
|
TILE_LARGE_PAGES
Use tiling only for pages larger than size indicated in PDTileRec of tileInfo
|
| Modifier and Type | Method and Description |
|---|---|
static PageTilingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PageTilingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageTilingMode NONE
public static final PageTilingMode TILE_ALL_PAGES
public static final PageTilingMode TILE_LARGE_PAGES
public static PageTilingMode[] values()
for (PageTilingMode c : PageTilingMode.values()) System.out.println(c);
public static PageTilingMode 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