public static enum OrderedList.NumberingType extends Enum<OrderedList.NumberingType>
| Enum Constant and Description |
|---|
LOWERCASE_LETTER
The list items will be numbered with lowercase letters.
|
LOWERCASE_ROMAN
The list items will be numbered with lowercase Roman numbers.
|
NUMBER
The list items will be numbered with numbers (default).
|
UPPERCASE_LETTER
The list items will be numbered with uppercase letters.
|
UPPERCASE_ROMAN
The list items will be numbered with uppercase Roman numbers.
|
| Modifier and Type | Method and Description |
|---|---|
static OrderedList.NumberingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderedList.NumberingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderedList.NumberingType NUMBER
public static final OrderedList.NumberingType UPPERCASE_LETTER
public static final OrderedList.NumberingType LOWERCASE_LETTER
public static final OrderedList.NumberingType UPPERCASE_ROMAN
public static final OrderedList.NumberingType LOWERCASE_ROMAN
public static OrderedList.NumberingType[] values()
for (OrderedList.NumberingType c : OrderedList.NumberingType.values()) System.out.println(c);
public static OrderedList.NumberingType 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 © 2025. All rights reserved.