public static enum TocProperties.TocRange extends Enum<TocProperties.TocRange>
| Enum Constant and Description |
|---|
DOCUMENT
Defines the TOC range to include the entire document
|
VOLUME
Defines the TOC range to include entries within the volume
|
| Modifier and Type | Method and Description |
|---|---|
static TocProperties.TocRange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TocProperties.TocRange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TocProperties.TocRange DOCUMENT
public static final TocProperties.TocRange VOLUME
public static TocProperties.TocRange[] values()
for (TocProperties.TocRange c : TocProperties.TocRange.values()) System.out.println(c);
public static TocProperties.TocRange 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 null