Searched defs:Word (Results 1 - 1 of 1) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DWord.java29 public final class Word implements Comparable<Word> { class in inherits:Comparable
39 public Word(final String word, final int frequency, method in class:Word
51 private static int computeHashCode(Word word) {
65 * A Word x is greater than a word y if x has a higher frequency. If they have the same
69 public int compareTo(Word w) {
84 if (!(o instanceof Word)) return false;
85 Word w = (Word)o;

Completed in 47 milliseconds