public enum PageLabelNumberingStyleConstants extends Enum<PageLabelNumberingStyleConstants>
PdfPage.setPageLabel(PageLabelNumberingStyleConstants, String)
.
Enum Constant and Description |
---|
DECIMAL_ARABIC_NUMERALS
1, 2, 3, 4...
|
LOWERCASE_LETTERS
a, b, c, d...
|
LOWERCASE_ROMAN_NUMERALS
i, ii, iii, iv...
|
UPPERCASE_LETTERS
A, B, C, D...
|
UPPERCASE_ROMAN_NUMERALS
I, II, III, IV...
|
Modifier and Type | Method and Description |
---|---|
static PageLabelNumberingStyleConstants |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PageLabelNumberingStyleConstants[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final PageLabelNumberingStyleConstants DECIMAL_ARABIC_NUMERALS
public static final PageLabelNumberingStyleConstants UPPERCASE_ROMAN_NUMERALS
public static final PageLabelNumberingStyleConstants LOWERCASE_ROMAN_NUMERALS
public static final PageLabelNumberingStyleConstants UPPERCASE_LETTERS
public static final PageLabelNumberingStyleConstants LOWERCASE_LETTERS
public static PageLabelNumberingStyleConstants[] values()
for (PageLabelNumberingStyleConstants c : PageLabelNumberingStyleConstants.values()) System.out.println(c);
public static PageLabelNumberingStyleConstants valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant with the specified name
NullPointerException
- if the argument is null
Copyright © 1998–2018 iText Group NV. All rights reserved.