Package com.itextpdf.layout.properties
Enum ListNumberingType
- java.lang.Object
-
- java.lang.Enum<ListNumberingType>
-
- com.itextpdf.layout.properties.ListNumberingType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ListNumberingType>
public enum ListNumberingType extends java.lang.Enum<ListNumberingType>
A specialized enum holding the possible values for a listList
's entry prefix. This class is meant to be used as the value for theProperty.LIST_SYMBOL
key in anIPropertyContainer
.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DECIMAL
DECIMAL_LEADING_ZERO
ENGLISH_LOWER
ENGLISH_UPPER
GREEK_LOWER
GREEK_UPPER
ROMAN_LOWER
ROMAN_UPPER
ZAPF_DINGBATS_1
Zapfdingbats font characters in range [172; 181]ZAPF_DINGBATS_2
Zapfdingbats font characters in range [182; 191]ZAPF_DINGBATS_3
Zapfdingbats font characters in range [192; 201]ZAPF_DINGBATS_4
Zapfdingbats font characters in range [202; 221]
-
Constructor Summary
Constructors Modifier Constructor Description private
ListNumberingType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ListNumberingType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ListNumberingType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DECIMAL
public static final ListNumberingType DECIMAL
-
DECIMAL_LEADING_ZERO
public static final ListNumberingType DECIMAL_LEADING_ZERO
-
ROMAN_LOWER
public static final ListNumberingType ROMAN_LOWER
-
ROMAN_UPPER
public static final ListNumberingType ROMAN_UPPER
-
ENGLISH_LOWER
public static final ListNumberingType ENGLISH_LOWER
-
ENGLISH_UPPER
public static final ListNumberingType ENGLISH_UPPER
-
GREEK_LOWER
public static final ListNumberingType GREEK_LOWER
-
GREEK_UPPER
public static final ListNumberingType GREEK_UPPER
-
ZAPF_DINGBATS_1
public static final ListNumberingType ZAPF_DINGBATS_1
Zapfdingbats font characters in range [172; 181]
-
ZAPF_DINGBATS_2
public static final ListNumberingType ZAPF_DINGBATS_2
Zapfdingbats font characters in range [182; 191]
-
ZAPF_DINGBATS_3
public static final ListNumberingType ZAPF_DINGBATS_3
Zapfdingbats font characters in range [192; 201]
-
ZAPF_DINGBATS_4
public static final ListNumberingType ZAPF_DINGBATS_4
Zapfdingbats font characters in range [202; 221]
-
-
Method Detail
-
values
public static ListNumberingType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ListNumberingType c : ListNumberingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ListNumberingType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-