public enum ListStyleType extends java.lang.Enum<ListStyleType> implements ValueEnum
| Enum Constant and Description |
|---|
CIRCLE An unfilled circle (◦) |
CUSTOM_IMAGE An image used in place of a marker. |
DECIMAL Numbers (1., 2., 3., etc.) |
DISC A filled, black dot (•) |
LOWER_ALPHA Lowercase letters (a., b., c., etc.) |
LOWER_ROMAN Lowercase Roman numerals (i., ii., iii., iv., etc.) |
SQUARE A filled, black square (■) |
UPPER_ALPHA Uppercase letters (A., B., C., etc.) |
UPPER_ROMAN Uppercase Roman numerals (I., II., III., IV., etc.) |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static ListStyleType | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static ListStyleType[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final ListStyleType DISC
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "disc".
public static final ListStyleType CIRCLE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "circle".
public static final ListStyleType SQUARE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "square".
public static final ListStyleType DECIMAL
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "decimal".
public static final ListStyleType UPPER_ROMAN
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "upper-roman".
public static final ListStyleType LOWER_ROMAN
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "lower-roman".
public static final ListStyleType UPPER_ALPHA
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "upper-alpha".
public static final ListStyleType LOWER_ALPHA
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "lower-alpha".
public static final ListStyleType CUSTOM_IMAGE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "custom-image".
public static ListStyleType[] values()
for (ListStyleType c : ListStyleType.values()) System.out.println(c);
public static ListStyleType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null