Package org.apache.poi.xssf.usermodel
Enum Class ListAutoNumber
- All Implemented Interfaces:
Serializable
,Comparable<ListAutoNumber>
,Constable
Specifies type of automatic numbered bullet points that should be applied to a paragraph.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription(a), (b), (c), ...a), b), c), ...a., b., c., ...(A), (B), (C), ...A), B), C), ...A., B., C., ...(1), (2), (3), ...1), 2), 3), ...1., 2., 3., ...1, 2, 3, ...Dbl-byte circle numbersWingdings black circle numbersWingdings white circle numbers(i), (ii), (iii), ...i), ii), iii), ...i., ii., iii., ...(I), (II), (III), ...I), II), III), ...I., II., III., ... -
Method Summary
Modifier and TypeMethodDescriptionstatic ListAutoNumber
Returns the enum constant of this class with the specified name.static ListAutoNumber[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ALPHA_LC_PARENT_BOTH
(a), (b), (c), ... -
ALPHA_UC_PARENT_BOTH
(A), (B), (C), ... -
ALPHA_LC_PARENT_R
a), b), c), ... -
ALPHA_UC_PARENT_R
A), B), C), ... -
ALPHA_LC_PERIOD
a., b., c., ... -
ALPHA_UC_PERIOD
A., B., C., ... -
ARABIC_PARENT_BOTH
(1), (2), (3), ... -
ARABIC_PARENT_R
1), 2), 3), ... -
ARABIC_PERIOD
1., 2., 3., ... -
ARABIC_PLAIN
1, 2, 3, ... -
ROMAN_LC_PARENT_BOTH
(i), (ii), (iii), ... -
ROMAN_UC_PARENT_BOTH
(I), (II), (III), ... -
ROMAN_LC_PARENT_R
i), ii), iii), ... -
ROMAN_UC_PARENT_R
I), II), III), ... -
ROMAN_LC_PERIOD
i., ii., iii., ... -
ROMAN_UC_PERIOD
I., II., III., ... -
CIRCLE_NUM_DB_PLAIN
Dbl-byte circle numbers -
CIRCLE_NUM_WD_BLACK_PLAIN
Wingdings black circle numbers -
CIRCLE_NUM_WD_WHITE_PLAIN
Wingdings white circle numbers
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-