Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
5answers
666 views

Might EnumMap be considered a reasonable alternative to Java beans?

Curious if anybody has considered using EnumMap in place of Java beans, particularly "value objects" (with no behavior)? To me it seems that one advantage would be that the name of a "property" would ...
0
votes
2answers
146 views

EnumMap constructor not found

Given that I have the requisite import java.awt.Color; import java.util.EnumMap; and enum Terrain { ... } then as far as I can tell from the documentation, this should work static ...
0
votes
5answers
153 views

How to put string items in a map of enums of enums of enums of String?

I would like to create an array (enum) of array (enum) of array (enum) of Strings. I don't think it is possible to achieve this in Java, but I have heard about EnumMap. public class Tricky { ...
0
votes
2answers
777 views

Equivalent in Java of EnumMap for use with enum type values?

I'm looking for a class like EnumMap, except for enum type values (ie. EnumValueMap<K,V extends Enum<V>>). http://java.sun.com/javase/6/docs/api/java/util/EnumMap.html Edit If I was ...