KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > commons > lang > enum > ValuedColorEnum


1 /*
2  * Copyright 2002-2005 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.commons.lang.enum;
17
18 import java.util.Iterator;
19 import java.util.List;
20 import java.util.Map;
21
22 /**
23  * Color enumeration.
24  *
25  * @author <a HREF="mailto:scolebourne@joda.org">Stephen Colebourne</a>
26  * @version $Id: ValuedColorEnum.java 161244 2005-04-14 06:16:36Z ggregory $
27  */

28
29 public final class ValuedColorEnum extends ValuedEnum {
30     public static final ValuedColorEnum RED = new ValuedColorEnum("Red", 1);
31     public static final ValuedColorEnum GREEN = new ValuedColorEnum("Green", 2);
32     public static final ValuedColorEnum BLUE = new ValuedColorEnum("Blue", 3);
33
34     private ValuedColorEnum(String color, int value) {
35         super(color, value);
36     }
37
38     public static ValuedColorEnum getEnum(String color) {
39         return (ValuedColorEnum) getEnum(ValuedColorEnum.class, color);
40     }
41
42     public static ValuedColorEnum getEnum(int value) {
43         return (ValuedColorEnum) getEnum(ValuedColorEnum.class, value);
44     }
45
46     public static Map getEnumMap() {
47         return getEnumMap(ValuedColorEnum.class);
48     }
49
50     public static List getEnumList() {
51         return getEnumList(ValuedColorEnum.class);
52     }
53
54     public static Iterator iterator() {
55         return iterator(ValuedColorEnum.class);
56     }
57 }
58
Popular Tags