public static enum ListStyle.Type extends java.lang.Enum<ListStyle.Type>
| Enum Constant and Description |
|---|
armenian
The marker is traditional Armenian numbering
|
circle
The marker is a circle
|
cjk_ideographic
The marker is plain ideographic numbers
|
decimal
The marker is a number
|
decimal_leading_zero
The marker is a number padded by initial zeros (01, 02, 03, etc.)
|
disc
The marker is a filled circle
|
georgian
The marker is traditional Georgian numbering (an, ban, gan, etc.)
|
hebrew
The marker is traditional Hebrew numbering
|
hiragana
The marker is: a, i, u, e, o, ka, ki, etc.
|
hiragana_iroha
The marker is: i, ro, ha, ni, ho, he, to, etc.
|
katakana
The marker is: A, I, U, E, O, KA, KI, etc.
|
katakana_iroha
The marker is: I, RO, HA, NI, HO, HE, TO, etc.
|
lower_alpha
The marker is lower-alpha (a, b, c, d, e, etc.)
|
lower_greek
The marker is lower-greek (alpha, beta, gamma, etc.)
|
lower_latin
The marker is lower-latin (a, b, c, d, e, etc.)
|
lower_roman
The marker is lower-roman (i, ii, iii, iv, v, etc.)
|
none
No marker
|
square
The marker is a square
|
upper_alpha
The marker is upper-alpha (A, B, C, D, E, etc.)
|
upper_latin
The marker is upper-latin (A, B, C, D, E, etc.)
|
upper_roman
The marker is upper-roman (I, II, III, IV, V, etc.)
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static ListStyle.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ListStyle.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListStyle.Type none
public static final ListStyle.Type disc
public static final ListStyle.Type circle
public static final ListStyle.Type square
public static final ListStyle.Type decimal
public static final ListStyle.Type decimal_leading_zero
public static final ListStyle.Type lower_roman
public static final ListStyle.Type upper_roman
public static final ListStyle.Type lower_alpha
public static final ListStyle.Type upper_alpha
public static final ListStyle.Type lower_greek
public static final ListStyle.Type lower_latin
public static final ListStyle.Type upper_latin
public static final ListStyle.Type hebrew
public static final ListStyle.Type armenian
public static final ListStyle.Type georgian
public static final ListStyle.Type cjk_ideographic
public static final ListStyle.Type hiragana
public static final ListStyle.Type katakana
public static final ListStyle.Type hiragana_iroha
public static final ListStyle.Type katakana_iroha
public static ListStyle.Type[] values()
for (ListStyle.Type c : ListStyle.Type.values()) System.out.println(c);
public static ListStyle.Type 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<ListStyle.Type>