I\'ve started a rather large Enum of so called Descriptors that I\'ve wanted to use as a reference list in my model. But now I\'ve come across a compiler/VM
You can try the typesafe enum pattern described by Joshua Bloch in the first edition of his book "Effective Java".
The idea is to create a class with a private constructor. Inside this class you define static instances of any number you want to-just as in a Java enum.
I don't know if there is a limit for the number of static members in the Java language, though.