}
List<String> biggestKeys = new ArrayList<String>(puncTypes.keySet());
Collections.sort(biggestKeys, Counters.toComparatorDescending(puncTypes));
PrintWriter pw = tlpp.pw();
for(String wordType : biggestKeys)
pw.printf("%s\t%d%n", wordType,(int) puncTypes.getCount(wordType));
pw.close();
}