1 /*
2 * Copyright (c) 2005, Mike Heath
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without modification, are permitted
6 * provided that the following conditions are met:
7 *
8 * * Redistributions of source code must retain the above copyright notice, this list of conditions
9 * and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright notice, this list of
11 * conditions and the following disclaimer in the documentation and/or other materials provided
12 * with the distribution.
13 * * The names of its contributors may not be used to endorse or promote products derived from this
14 * software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28 package net.sf.cssbean;
29
30 /***
31 * @author Mike Heath <elcapo@gmail.com>
32 */
33 public enum ListStyleType implements Value {
34 NONE("none"),
35 DISC("disc"),
36 CIRCLE("circle"),
37 SQUARE("square"),
38 DECIMAL("decimal"),
39 DECIMAL_LEADING_ZERO(" decimal-leading-zero"),
40 LOWER_ROMAN("lower-roman"),
41 UPPER_ROMAN("upper-roman"),
42 LOWER_ALPHA("lower-alpha"),
43 UPPER_ALPHA("upper-alpha"),
44 LOWER_GREEK("lower-greek"),
45 LOWER_LATIN("lower-latin"),
46 UPPER_LATIN("upper-latin"),
47 HEBREW("hebrew"),
48 ARMENIAN("armenian"),
49 GEORGIAN("georgian"),
50 CJK_IDEOGRAPHIC("cjk-ideographic"),
51 HIRAGANA("hiragana"),
52 KATAKANA("katakana"),
53 HIRAGANA_IROHA("hiragana-iroha"),
54 KATAKANA_IROHA("katakana-iroha");
55
56 private final String value;
57
58 private ListStyleType(String value) {
59 this.value = value;
60 }
61
62 public String getValue() {
63 return value;
64 }
65 }