org.odftoolkit.simple.text.list
Enum ListDecorator.ListType

java.lang.Object
  extended by java.lang.Enum<ListDecorator.ListType>
      extended by org.odftoolkit.simple.text.list.ListDecorator.ListType
All Implemented Interfaces:
Serializable, Comparable<ListDecorator.ListType>
Enclosing interface:
ListDecorator

public static enum ListDecorator.ListType
extends Enum<ListDecorator.ListType>

The supported list types till now.

Since:
0.4

Enum Constant Summary
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.
 
Method Summary
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

BULLET

public static final ListDecorator.ListType BULLET
BULLET specifies a list type where list items are preceded by bullets.


NUMBER

public static final ListDecorator.ListType NUMBER
NUMBER specifies a list type where list items are preceded by numbers.


IMAGE

public static final ListDecorator.ListType IMAGE
IMAGE specifies a list type where list items are preceded by images.

Method Detail

values

public static ListDecorator.ListType[] 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 (ListDecorator.ListType c : ListDecorator.ListType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ListDecorator.ListType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2010-2011 The Apache Software Foundation. All Rights Reserved.