public enum HeaderFooterType extends java.lang.Enum<HeaderFooterType>
Enum Constant and Description |
---|
DEFAULT
This is the default header or Footer, It is displayed on every page where
a more specific header or footer is not specified.
|
EVEN
This is an even page header or footer, it is displayed on even pages that
are not the first page of the section.
|
FIRST
This is a first page header or footer It is displayed on the first page
of the section.
|
Modifier and Type | Method and Description |
---|---|
static HeaderFooterType |
forInt(int i) |
int |
toInt() |
static HeaderFooterType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HeaderFooterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HeaderFooterType DEFAULT
public static final HeaderFooterType EVEN
public static final HeaderFooterType FIRST
public static HeaderFooterType[] values()
for (HeaderFooterType c : HeaderFooterType.values()) System.out.println(c);
public static HeaderFooterType 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 nullpublic int toInt()
public static HeaderFooterType forInt(int i)
Copyright 2022 The Apache Software Foundation or its licensors, as applicable.