Lines Matching refs:word

138      * Searched word's frequency in the dictionary is mapped to the range from {@code base} to {@code high}.
191 * To get the searched word's information, use {@link #getNextWord()}.<br>
192 * If a same word existed in the set of dictionary, the search result may contain some same words.<br>
194 * If approximate patterns were set, the first word in search
195 * results is the highest approximation word which contains best
224 * @return 0 if no word is found; 1 if some words found; minus value if a error occurs.
229 * Search words from dictionaries with specified conditions and previous word.
231 * For using link search function, specify the {@code wnnWord} as previous word and
235 * If the prediction dictionary for reading is set to use, the previous word must contain
237 * for part of speech is set to use, the previous word must contain the {@code partOfSpeech} information.
239 * @param wnnWord The previous word
242 * @return 0 if no word is found; 1 if some words found; minus value if a error occurs.
247 * Retrieve a searched word information.
249 * It returns a word information from top of the {@code searchWord()}'s result.
250 * To get all word's information of the result, call this method repeatedly until it returns null.
257 * Retrieve a searched word information with condition of length.
259 * It returns a word information from top of the {@code searchWord()}'s result.
260 * To get all word's information of the result, call this method repeatedly until it returns null.
268 * Retrieve all word in the user dictionary.
316 * @param word The array of word
319 public int addWordToUserDictionary( WnnWord[] word );
321 * Add the word to user dictionary.
323 * @param word The word
326 public int addWordToUserDictionary( WnnWord word );
331 * @param word The array of word
334 public int removeWordFromUserDictionary( WnnWord[] word );
336 * Remove the word from user dictionary.
338 * @param word The word
341 public int removeWordFromUserDictionary( WnnWord word );
344 * Learn the word.
346 * @param word The word for learning
349 public int learnWord( WnnWord word );
352 * Learn the word with connection.
354 * @param word The word for learning
355 * @param previousWord The word for link learning
358 public int learnWord( WnnWord word, WnnWord previousWord );