I am not sure of best way to convert all Strings in a collection to lowercase. Any thoughts?
private Set<String> email;
if(userEmail instanceof Collection) {
this.email = new HashSet<String>((Collection<String>) userEmail);
model.put("userEmail", this.email); //need to convert this to lower case
}
Thanks in advance :-)