public enum TableOfContentsTypes extends Enum<TableOfContentsTypes>
| Enum Constant and Description |
|---|
Basic
Create a table of contents without page numbers
More performance, but does not include page numbers
|
None
Do not create a table of contents
|
WithPageNumbers
Create a table of contents with page numbers
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static TableOfContentsTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableOfContentsTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableOfContentsTypes None
public static final TableOfContentsTypes Basic
public static final TableOfContentsTypes WithPageNumbers
public static TableOfContentsTypes[] values()
for (TableOfContentsTypes c : TableOfContentsTypes.values()) System.out.println(c);
public static TableOfContentsTypes 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 nullpublic int getValue()
Copyright © 2022–2025 Iron Software. All rights reserved.