Uses of Interface
org.apache.lucene.analysis.ja.dict.Dictionary
-
Packages that use Dictionary Package Description org.apache.lucene.analysis.ja Analyzer for Japanese.org.apache.lucene.analysis.ja.dict Kuromoji dictionary implementation. -
-
Uses of Dictionary in org.apache.lucene.analysis.ja
Fields in org.apache.lucene.analysis.ja declared as Dictionary Modifier and Type Field Description private Dictionary
Token. dictionary
Fields in org.apache.lucene.analysis.ja with type parameters of type Dictionary Modifier and Type Field Description private java.util.EnumMap<JapaneseTokenizer.Type,Dictionary>
JapaneseTokenizer. dictionaryMap
(package private) java.util.EnumMap<JapaneseTokenizer.Type,Dictionary>
JapaneseTokenizer.Lattice. dictionaryMap
Methods in org.apache.lucene.analysis.ja that return Dictionary Modifier and Type Method Description (package private) Dictionary
JapaneseTokenizer. getDict(JapaneseTokenizer.Type type)
Methods in org.apache.lucene.analysis.ja with parameters of type Dictionary Modifier and Type Method Description private void
JapaneseTokenizer. add(Dictionary dict, JapaneseTokenizer.Position fromPosData, int endPos, int wordID, JapaneseTokenizer.Type type, boolean addPenalty)
Method parameters in org.apache.lucene.analysis.ja with type arguments of type Dictionary Modifier and Type Method Description (package private) void
JapaneseTokenizer.Lattice. setup(char[] fragment, java.util.EnumMap<JapaneseTokenizer.Type,Dictionary> dictionaryMap, JapaneseTokenizer.WrappedPositionArray positions, int prevOffset, int endOffset, boolean useEOS)
Constructors in org.apache.lucene.analysis.ja with parameters of type Dictionary Constructor Description Token(int wordId, char[] surfaceForm, int offset, int length, JapaneseTokenizer.Type type, int position, Dictionary dictionary)
-
Uses of Dictionary in org.apache.lucene.analysis.ja.dict
Classes in org.apache.lucene.analysis.ja.dict that implement Dictionary Modifier and Type Class Description class
BinaryDictionary
Base class for a binary-encoded in-memory dictionary.class
TokenInfoDictionary
Binary dictionary implementation for a known-word dictionary model: Words are encoded into an FST mapping to a list of wordIDs.class
UnknownDictionary
Dictionary for unknown-word handling.class
UserDictionary
Class for building a User Dictionary.
-