public static enum ListDecorator.ListType extends Enum<ListDecorator.ListType>
Enum Constant and Description |
---|
BULLET
BULLET specifies a list type where list items are preceded by
bullets.
|
IMAGE
IMAGE specifies a list type where list items are preceded by images.
|
NUMBER
NUMBER specifies a list type where list items are preceded by
numbers.
|
Modifier and Type | Method and Description |
---|---|
static ListDecorator.ListType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListDecorator.ListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListDecorator.ListType BULLET
public static final ListDecorator.ListType NUMBER
public static final ListDecorator.ListType IMAGE
public static ListDecorator.ListType[] values()
for (ListDecorator.ListType c : ListDecorator.ListType.values()) System.out.println(c);
public static ListDecorator.ListType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2010-2013 The Apache Software Foundation. All Rights Reserved.