package com.ensemble.wordcount; import java.util.Comparator; /** * A Comparator class for comparing the lengths of strings * This is used for sorting the list of words by length * * @author Joe Robinson */ public class LengthComparator implements Comparator { @Override public int compare(String string1, String string2) { return string2.length() - string1.length(); } }