public class CreditCardBean
{
. . .
public Map<String, Integer> getMonthChoices()
{
Map<String, Integer> choices = new LinkedHashMap<String, Integer>();
choices.put("January", 1);
choices.put("February", 2);
. . .
return choices;
}
}