01 /*---
02    Copyright 2006-2007 Visual Systems Corporation.
03    http://www.vscorp.com
04 
05    Licensed under the Apache License, Version 2.0 (the "License");
06    you may not use this file except in compliance with the License.
07    You may obtain a copy of the License at
08    
09         http://www.apache.org/licenses/LICENSE-2.0
10    
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16 ---*/
17 package net.sourceforge.wicketwebbeans.model;
18 
19 
20 import java.io.Serializable;
21 import java.util.List;
22 
23 import net.sourceforge.wicketwebbeans.model.NonJavaEnum;
24 
25 /**
26  * Base implementation of NonJavaEnum to make it look similar to a Java Enum.
27  
28  @author Marc Stock
29  @author Dan Syrstad
30  */
31 public abstract class BaseNonJavaEnum implements NonJavaEnum, Serializable
32 {
33     protected String name;
34     protected String displayValue;
35 
36     public BaseNonJavaEnum(String name, String displayValue)
37     {
38         this.name = name;
39         this.displayValue = displayValue;
40     }
41 
42     public String name()
43     {
44         return name;
45     }
46 
47     public String getDisplayValue()
48     {
49         return displayValue;
50     }
51 
52     public void setDisplayValue(String displayValue)
53     {
54         this.displayValue = displayValue;
55     }
56 
57     /**
58      * Get the Enum for the given name.
59      *
60      @param enumValue name to match
61      *
62      @return a Enum, or null if not found.
63      @param enums cachedEnums to search through
64      */
65     public static BaseNonJavaEnum valueOf(String enumValue, List<? extends BaseNonJavaEnum> enums)
66     {
67         if (enumValue == null)
68             return null;
69 
70         for (BaseNonJavaEnum nonJavaEnum : enums) {
71             if (nonJavaEnum.name().equals(enumValue)) {
72                 return nonJavaEnum;
73             }
74         }
75 
76         return null;
77     }
78 
79     @Override
80     public String toString()
81     {
82         return getDisplayValue();
83     }
84 
85     @Override
86     public boolean equals(Object obj)
87     {
88         if (this == obj) {
89             return true;
90         }
91 
92         if (!(obj instanceof BaseNonJavaEnum)) {
93             return false;
94         }
95 
96         BaseNonJavaEnum other = (BaseNonJavaEnum)obj;
97         return name().equals(other.name());
98     }
99 }
Java2html