MyEnum.values() - Reihenfolge?
-
Ist garantiert, dass bei MyEnum.values() die Values in der Reihenfolge kommen in der sie im Code angegeben sind?
MfG SideWinder
-
jo, gibt alle values in der reihenfolge ihrer deklaration zurück. steht irgendwo in der doku.
-
http://java.sun.com/docs/books/tutorial/java/javaOO/enum.html schrieb:
[...] The compiler automatically adds some special methods when it creates an enum. For example, they have a static values method that returns an array containing all of the values of the enum in the order they are declared. [...]
-
Danke!
MfG SideWinder