What are java enums? How do they work? Where could I used them and how?
Can I do without using enums in an app or are they so powerful that Its better to use them than ignore them?
|
|
|
Enums in Java 5+ are basically classes that have a predefined set of instances. They are intended as a replacement for, say, a collection of integer constants. They are preferably to constants as they can enforce type safety. So instead of:
you have:
The advantages are:
The type safety is an issue because in the first example, these are valid statements:
or you can pass in 11 to a function expecting a suit. You can't do that with a typesafe enum. You can use a class for Suit to provide type safety and this was the solution before Java 5. Josh Bloch (in Effective Java, which is a must read for Java programmers imho) promoted the typesafe enum pattern that became the Java 5+ enum. It has a fair amount of boilerplate on it and some corner cases that people didn't tend to cater for, such as serialization not calling a constructor and to ensure you only got one instance you had to override the readResolve() method. For example:
Edit: Sun has an introduction to typesafe enums. As for interfaces, they really complement enums rather than being an alternative. Like you could say that Suit is an interface and you'd have this:
The problem is that you could go and define 300 different suits and you could also define Spades several times. Another advantage of enums is (classloading corner cases notwithstanding) is that there is only one instance of each enum value. Typically this is referred to as having a canonical value, meaning this equality holds true:
for all a, b that are instances of a particular Enum. This means that instead of writing:
you can write:
which is quicker and typically easier to read. Plus IDEs will typically give you feedback if you're comparing enums of different types saying they can't possibly be equal, which can be a useful and early form of error-checking. |
|||||||||||||||||
|
|
Think of Enum as follows
So a MyEnum as a enum would be
Both are similar regards, |
||||
|
|
|
Sun's enum documentation is probably the best explanation. Of course you can do without them as Java programmers certainly did until Java 1.5 was released. You would typically accomplish the same thing by using constants in versions of Java before 1.5. But enums are a nice convenience. |
|||
|
|
|
If the situation doesn't come up then you don't need them. They allow you to have a well defined set of things, for instance if you wanted to represent the states of matter you could have:
Where they beat the old style of using objects to represent sets in a number of ways, some of which are:
|
|||
|
From my interpretation, enums are more for readability than anything else. They are basically used to replace values like 1-6 with more descriptive names, like [Happy, Sad, Angry, etc] You should use them whenever you need to use a small set of variables to describe the solution that you are expecting. |
|||||
|