For example, suppose I have the following enum:
public enum Animals {
DOG,
CAT,
COW
}
I can get the entire set by doing something like this:
EnumSet e = EnumSet.allOf(Animals.class);
But there doesn't seem to be any way to display this collection in a uitags:source because it's not a map, and doesn't have any "bean" properties that can be accessed as the value or name.