What's the Java equivalent of C#'s:
enum Foo
{
Bar = 0,
Baz = 1,
Fii = 10,
}
|
|
|
|
|
|
|
If you want attributes for your
You'd use it like this:
The thing to realise is that If you don't want to define any methods on your |
||||||
|
|
|
Sounds like you want something like this:
For starters, Sun's Java Enum Tutorial would be a great place to learn more. |
||
|
|
|
|
It is:
Note that to get the value of the enum from the index,
(*): Enum.valueOf() return the enum from a String. As such, you can get the value Bar with |
||||
|
|
|
In Java enums are very similar to other classes but the the Java compiler knows to treat a little differently in various situations. So if you want data in them like you seem to you need to have an instance variable for the data and an appropriate constructor. |
|||
|
|