net.sf.cssbean
Enum ListStyleType

java.lang.Object
  extended by java.lang.Enum<ListStyleType>
      extended by net.sf.cssbean.ListStyleType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ListStyleType>, Value

public enum ListStyleType
extends java.lang.Enum<ListStyleType>
implements Value

Author:
Mike Heath

Enum Constant Summary
ARMENIAN
           
CIRCLE
           
CJK_IDEOGRAPHIC
           
DECIMAL
           
DECIMAL_LEADING_ZERO
           
DISC
           
GEORGIAN
           
HEBREW
           
HIRAGANA
           
HIRAGANA_IROHA
           
KATAKANA
           
KATAKANA_IROHA
           
LOWER_ALPHA
           
LOWER_GREEK
           
LOWER_LATIN
           
LOWER_ROMAN
           
NONE
           
SQUARE
           
UPPER_ALPHA
           
UPPER_LATIN
           
UPPER_ROMAN
           
 
Method Summary
 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're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final ListStyleType NONE

DISC

public static final ListStyleType DISC

CIRCLE

public static final ListStyleType CIRCLE

SQUARE

public static final ListStyleType SQUARE

DECIMAL

public static final ListStyleType DECIMAL

DECIMAL_LEADING_ZERO

public static final ListStyleType DECIMAL_LEADING_ZERO

LOWER_ROMAN

public static final ListStyleType LOWER_ROMAN

UPPER_ROMAN

public static final ListStyleType UPPER_ROMAN

LOWER_ALPHA

public static final ListStyleType LOWER_ALPHA

UPPER_ALPHA

public static final ListStyleType UPPER_ALPHA

LOWER_GREEK

public static final ListStyleType LOWER_GREEK

LOWER_LATIN

public static final ListStyleType LOWER_LATIN

UPPER_LATIN

public static final ListStyleType UPPER_LATIN

HEBREW

public static final ListStyleType HEBREW

ARMENIAN

public static final ListStyleType ARMENIAN

GEORGIAN

public static final ListStyleType GEORGIAN

CJK_IDEOGRAPHIC

public static final ListStyleType CJK_IDEOGRAPHIC

HIRAGANA

public static final ListStyleType HIRAGANA

KATAKANA

public static final ListStyleType KATAKANA

HIRAGANA_IROHA

public static final ListStyleType HIRAGANA_IROHA

KATAKANA_IROHA

public static final ListStyleType KATAKANA_IROHA
Method Detail

values

public static final ListStyleType[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ListStyleType c : ListStyleType.values())
        System.out.println(c);

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

valueOf

public static ListStyleType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

getValue

public java.lang.String getValue()
Specified by:
getValue in interface Value


Copyright © 2005 Mike Heath. All Rights Reserved.