public enum PageScaling extends Enum<PageScaling>
| Enum Constant and Description |
|---|
FIT_TO_PAGE |
FIT_TO_PAGE_WITH_ASPECT |
NONE |
USE_RENDERING_RESOLUTION
Deprecated.
No Replacement. Resolution is always based on the Resolution
settings specified in the ResolutionSettings of Preferences of
the DocumentConverter.
|
| Modifier and Type | Method and Description |
|---|---|
static PageScaling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageScaling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageScaling NONE
public static final PageScaling USE_RENDERING_RESOLUTION
public static final PageScaling FIT_TO_PAGE
public static final PageScaling FIT_TO_PAGE_WITH_ASPECT
public static PageScaling[] values()
for (PageScaling c : PageScaling.values()) System.out.println(c);
public static PageScaling valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null