public PairOfIntLong getStats(String term) {
   int df = -1;
   long cf = -1;
   PairOfIntLong p = new PairOfIntLong();
   if (frequentTermsDfs != null) {
     try {
       df = frequentTermsDfs.get(term);
       LOGGER.info("[cached] df of " + term + ": " + df);
       if (frequentTermsCfs != null) {
         try {
           cf = frequentTermsCfs.get(term);
           LOGGER.info("[cached] cf of " + term + ": " + cf);
           p.set(df, cf);
           return p;
         } catch (NoSuchElementException e) {
         }
       }
     } catch (NoSuchElementException e) {
     }
   }
   int index = prefixSet.getId(term);
   LOGGER.info("index of " + term + ": " + index);
   if (index < 0) return null;
   p.set(dfs[index], cfs[index]);
   return p;
 }
 public PairOfIntLong getStats(int index) {
   if (index < 0) return null;
   PairOfIntLong p = new PairOfIntLong();
   p.set(dfs[index], cfs[index]);
   return p;
 }