public enum PageBreakExtent extends java.lang.Enum<PageBreakExtent>
| Enum Constant and Description |
|---|
PageBreakFull
Specifies the page break is full screen.
|
PageBreakPartial
Specifies the page break is only within print area.
|
| Modifier and Type | Method and Description |
|---|---|
static PageBreakExtent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PageBreakExtent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PageBreakExtent PageBreakFull
public static final PageBreakExtent PageBreakPartial
public static PageBreakExtent[] values()
for (PageBreakExtent c : PageBreakExtent.values()) System.out.println(c);
public static PageBreakExtent 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