How to display hashmap in JSF using selectonemenu?

Viewed 18063

I have a Java hashmap with a a list of a groups:

private HashMap<String, String> listGroups = new HashMap<>();

The question is how I can display the values from the hashmap into the selectonemenu?

1 Answers
Related