It may seem strange, but I need to get values of non-selected radio buttons for each radio button's group. I have used the code below to get all the selected buttons values, but I need to get the unselected ones.
ArrayList <String> userSelection = new ArrayList <String>();
Enumeration names = request.getParameterNames();
String selection = "";
while ( names.hasMoreElements() )
{
name = (String) names.nextElement();
userSelection.add(request.getParameter( selection ));
}