public enum BulletTypes extends java.lang.Enum<BulletTypes>
Enum Constant and Description |
---|
ALPHA_LOWERCASE |
ALPHA_UPPERCASE |
DECIMAL_NUMBER |
ROMAN_LOWERCASE |
ROMAN_NUMBER |
Modifier and Type | Method and Description |
---|---|
static BulletTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BulletTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BulletTypes DECIMAL_NUMBER
public static final BulletTypes ALPHA_UPPERCASE
public static final BulletTypes ALPHA_LOWERCASE
public static final BulletTypes ROMAN_LOWERCASE
public static final BulletTypes ROMAN_NUMBER
public static BulletTypes[] values()
for (BulletTypes c : BulletTypes.values()) System.out.println(c);
public static BulletTypes 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