public enum PositionOfStaticElements extends java.lang.Enum<PositionOfStaticElements>
position of the footer or the header: on all pages, on all pages except the first, on all pages except the last
| Enum Constant and Description |
|---|
ON_ALL_PAGES |
ON_ALL_PAGES_BUT_FIRST |
ON_ALL_PAGES_BUT_LAST |
| Modifier and Type | Method and Description |
|---|---|
static PositionOfStaticElements |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PositionOfStaticElements[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PositionOfStaticElements ON_ALL_PAGES
public static final PositionOfStaticElements ON_ALL_PAGES_BUT_FIRST
public static final PositionOfStaticElements ON_ALL_PAGES_BUT_LAST
public static PositionOfStaticElements[] values()
for (PositionOfStaticElements c : PositionOfStaticElements.values()) System.out.println(c);
public static PositionOfStaticElements 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