Introduction
Enums introduced to Java 1.5 is a very useful and well known feature. There are a lot of tutorials that explain enums usage in details (e.g. the official Sun’s tutorial). Java enums by definition are immutable and must be defined in code. In this article I would like to explain use case when dynamic enums are needed and how to implement them.Motivation
There are 3 ways to use enums:- direct access using the enum value, e.g.
Color.RED
- access using enum name, e.g.
Color.valueOf("RED")
- get enumeration of all enum values using
values()
method, e.g. Color.values()
For example let’s discover the
enum Color
:enum Color {RED, GREEN, BLUE;}
Let’s assume that we would like to allow user to create his custom colors. So, we have to handle table “Color” in database. But in this case we cannot continue using enum Color: if user adds new color (e.g. YELLOW) to DB we have to modify code and add this color to enum too.
OK, we can refuse to use enum in this case. Just rename enum to class and initialize list of colors from DB. But what if we already have 100 thousand lines of code where methods
values()
and valueOf()
of enum Color are used? No problem: we can implement valueOf()
and values()
manually for the new class “Color.”Now is the problem. What if we have to refactor 12 enums like Color? Copy/Paste the new methods to all these classes? I would like to suggest other, more generic approach.
Making enums dynamic
Enum is compile time feature. When we create enum Foo, class Foo that extendsjava.lang.Enum
is generated for us automatically. This is the reason why enum
cannot extend other class (multiple inheritance is not supported in Java). Moreover some compiler’s magic prevents attempt to manually write class that extends java.lang.Enum
.The only solution is to write yet another class similar to Enum. I wrote class DynaEnum. This class mimics functionality of Enum but it is regular class, so it can be inherited. Static hash table holds elements of all created dynamic enums.
My DynaEnum contains generic implementation of
valueOf()
and values()
done using reflection, so users of this class do not have to implement them.This class allows relatively easy refactoring for use case described above. Just change enum to class, inherit it from DynaEnum and write code to initialize members.
Example
Source code of examples can be found here.I implemented 2 examples:
DigitsDynaEnum
that does not have any added value relatively to enum
. It is implemented mostly to check that base class functionality works. DigitsDynaEnumTest
contains several unit tests.PropertiesDynaEnum
is a dynamic enum
that reads its members from properties file. Its subclass WritersDynaEnum
reads list of famous writers from properties file WritersDynaEnum.properties
.The goal is implemented! We have class that mimics functionality of
enum
but is absolutely dynamic. We can change list of writers without re-compiling the code. Therefore we can actually store the enum
values everywhere and change “enums” at runtime.It is not a problem to implement something like “
JdbcDynaEnum
” that reads values from database but this implementation is out of scope of this article.Limitations
The solution is not ideal. It uses static initialization that could cause problems in multi-class loaders environment. Members of dynamic enums obviously cannot be accessed directly (Color.RED
) but only using valueOf()
or values()
. But still in some cases this technique may be very useful.
No comments:
Post a Comment