Uses of Interface
org.apache.lucene.analysis.ko.dict.Dictionary
-
Packages that use Dictionary Package Description org.apache.lucene.analysis.ko Analyzer for Korean.org.apache.lucene.analysis.ko.dict Korean dictionary implementation. -
-
Uses of Dictionary in org.apache.lucene.analysis.ko
Fields in org.apache.lucene.analysis.ko declared as Dictionary Modifier and Type Field Description private Dictionary
DictionaryToken. dictionary
Fields in org.apache.lucene.analysis.ko with type parameters of type Dictionary Modifier and Type Field Description private java.util.EnumMap<KoreanTokenizer.Type,Dictionary>
KoreanTokenizer. dictionaryMap
Methods in org.apache.lucene.analysis.ko that return Dictionary Modifier and Type Method Description (package private) Dictionary
KoreanTokenizer. getDict(KoreanTokenizer.Type type)
Methods in org.apache.lucene.analysis.ko with parameters of type Dictionary Modifier and Type Method Description private void
KoreanTokenizer. add(Dictionary dict, KoreanTokenizer.Position fromPosData, int wordPos, int endPos, int wordID, KoreanTokenizer.Type type)
Constructors in org.apache.lucene.analysis.ko with parameters of type Dictionary Constructor Description DictionaryToken(KoreanTokenizer.Type type, Dictionary dictionary, int wordId, char[] surfaceForm, int offset, int length, int startOffset, int endOffset)
-
Uses of Dictionary in org.apache.lucene.analysis.ko.dict
Classes in org.apache.lucene.analysis.ko.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.
-