list.add(new FacetHelper(key, term, term, e.getCount()));
}
ret.set(integ, new MapEntry(ff.getName(), list));
}
} else if (facet instanceof FilterFacet) {
FilterFacet ff = (FilterFacet) facet;
String name = ff.getName();
int firstIndex = name.indexOf(":");
if (firstIndex < 0)
continue;
String key = name.substring(0, firstIndex);
String val = name.substring(firstIndex + 1);
System.out.println("NAME:"+name);
// exclude smaller zero?
Long count = ff.count();
if (count == null)
count = 0L;
Integer index = filterToIndex.get(key);
if (index == null)