Home | History | Annotate | Download | only in makedict

Lines Matching defs:Word

25  * Utility class for a word with a frequency.
29 public final class Word implements Comparable<Word> {
39 public Word(final String word, final int frequency,
43 mWord = word;
51 private static int computeHashCode(Word word) {
53 word.mWord,
54 word.mFrequency,
55 word.mShortcutTargets.hashCode(),
56 word.mBigrams.hashCode(),
57 word.mIsNotAWord,
58 word.mIsBlacklistEntry
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;