public enum NumberingStyle extends Enum<NumberingStyle>
Enum Constant and Description |
---|
LettersLowercase
Lowercase latin letters (a, b, c...).
|
LettersUppercase
Uppercase latin letters (A, B, C...).
|
None
No numbering.
|
NumeralsArabic
Arabic decimal numbers.
|
NumeralsRomanLowercase
Lowercase roman numbers (i, ii, iii...).
|
NumeralsRomanUppercase
Uppercase roman numbers (I, II, III...).
|
Modifier and Type | Method and Description |
---|---|
static NumberingStyle |
getByValue(int value) |
int |
getValue() |
static NumberingStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumberingStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberingStyle NumeralsArabic
public static final NumberingStyle NumeralsRomanUppercase
public static final NumberingStyle NumeralsRomanLowercase
public static final NumberingStyle LettersUppercase
public static final NumberingStyle LettersLowercase
public static final NumberingStyle None
public static NumberingStyle[] values()
for (NumberingStyle c : NumberingStyle.values()) System.out.println(c);
public static NumberingStyle 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()
public static NumberingStyle getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.