Dictionary.WordComparator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Dictionary Show documentation
Show all versions of Dictionary Show documentation
Dictionary processing library
The newest version!
package Dictionary;
import java.io.Serializable;
import java.util.Comparator;
public abstract class WordComparator implements Comparator, Serializable {
/**
* An abstract compare method.
*
* @param wordA Word type input.
* @param wordB Word type input.
* @return integer.
*/
public abstract int compare(Word wordA, Word wordB);
}