public static enum TocOptions.ListType extends Enum<TocOptions.ListType>
| Enum Constant and Description |
|---|
FLAT |
FLAT_REVERSED |
HIERARCHY |
SORTED |
SORTED_REVERSED |
| Modifier and Type | Method and Description |
|---|---|
static TocOptions.ListType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TocOptions.ListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TocOptions.ListType HIERARCHY
public static final TocOptions.ListType FLAT
public static final TocOptions.ListType FLAT_REVERSED
public static final TocOptions.ListType SORTED
public static final TocOptions.ListType SORTED_REVERSED
public static TocOptions.ListType[] values()
for (TocOptions.ListType c : TocOptions.ListType.values()) System.out.println(c);
public static TocOptions.ListType 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 nullCopyright © 2020. All rights reserved.