if((mimesStr.length()>0)&&(!mimesStr.equals("*")))
{
String[] typesSet = mimesStr.split(",");
for(String type : typesSet)
{
MIMEType mtype = null;
for(MIMEType m : MIMEType.values())
if((m.name().equals(type))
||(type.endsWith("*") && m.name().startsWith(type.substring(0,type.length()-1)))
||(type.startsWith("*") && m.name().endsWith(type.substring(1)))
||(type.equals(m.getType()))