Uses of Class
org.lionsoul.jcseg.dic.ADictionary
-
Packages that use ADictionary Package Description org.lionsoul.jcseg.dic org.lionsoul.jcseg.fi org.lionsoul.jcseg.segmenter org.lionsoul.jcseg.util -
-
Uses of ADictionary in org.lionsoul.jcseg.dic
Subclasses of ADictionary in org.lionsoul.jcseg.dic Modifier and Type Class Description classHashMapDictionaryDictionary classMethods in org.lionsoul.jcseg.dic that return ADictionary Modifier and Type Method Description static ADictionaryDictionaryFactory. createDefaultDictionary(SegmenterConfig config)create the ADictionary according to the JcsegTaskConfig check and load the lexicon by defaultstatic ADictionaryDictionaryFactory. createDefaultDictionary(SegmenterConfig config, boolean loadDic)create the ADictionary according to the JcsegTaskConfigstatic ADictionaryDictionaryFactory. createDefaultDictionary(SegmenterConfig config, boolean sync, boolean loadDic)create a default ADictionary instance: 1.static ADictionaryDictionaryFactory. createSingletonDictionary(SegmenterConfig config)create a singleton ADictionary object according to the JcsegTaskConfig check and load the lexicon by defaultstatic ADictionaryDictionaryFactory. createSingletonDictionary(SegmenterConfig config, boolean loadDic)create a singleton ADictionary object according to the SegmentConfigMethods in org.lionsoul.jcseg.dic with parameters of type ADictionary Modifier and Type Method Description static voidADictionary. loadWords(SegmenterConfig config, ADictionary dic, File file, List<String[]> buffer)load all the words in the specified lexicon file into the dictionarystatic voidADictionary. loadWords(SegmenterConfig config, ADictionary dic, InputStream is, List<String[]> buffer)load words from a InputStreamstatic voidADictionary. loadWords(SegmenterConfig config, ADictionary dic, String file, List<String[]> buffer)load all the words from a specified lexicon file pathstatic voidADictionary. resetPrefixLength(SegmenterConfig config, ADictionary dic, int mixLength)check and reset the value ofmixPrefixLengthstatic voidADictionary. resetSuffixLength(SegmenterConfig config, ADictionary dic, int mixLength)check and reset the value of themixSuffixLength -
Uses of ADictionary in org.lionsoul.jcseg.fi
Methods in org.lionsoul.jcseg.fi that return ADictionary Modifier and Type Method Description ADictionaryDictionaryFunction. create(SegmenterConfig config, boolean sync)Methods in org.lionsoul.jcseg.fi with parameters of type ADictionary Modifier and Type Method Description ISegmentSegmenterFunction. create(SegmenterConfig config, ADictionary dic) -
Uses of ADictionary in org.lionsoul.jcseg.segmenter
Fields in org.lionsoul.jcseg.segmenter declared as ADictionary Modifier and Type Field Description ADictionaryDelimiterSeg. dicthe dictionary and task configurationADictionaryDetectSeg. dicthe dictionary and task configurationADictionaryNGramSeg. dicthe dictionary and task configurationADictionarySegmenter. dicthe dictionary and task configuration instanceMethods in org.lionsoul.jcseg.segmenter that return ADictionary Modifier and Type Method Description ADictionaryDelimiterSeg. getDic()get the current dictionary instanceADictionaryNGramSeg. getDic()ADictionaryDetectSeg. getDict()get the current dictionary instanceADictionarySegmenter. getDict()get the current dictionary instance.Constructors in org.lionsoul.jcseg.segmenter with parameters of type ADictionary Constructor Description ComplexSeg(SegmenterConfig config, ADictionary dic)DelimiterSeg(SegmenterConfig config, ADictionary dic)method to create a new ISegmentDetectSeg(SegmenterConfig config, ADictionary dic)method to create a new ISegmentMostSeg(SegmenterConfig config, ADictionary dic)NGramSeg(SegmenterConfig config, ADictionary dic)method to create a new ISegmentNLPSeg(SegmenterConfig config, ADictionary dic)Segmenter(SegmenterConfig config, ADictionary dic)initialize the segmentSimpleSeg(SegmenterConfig config, ADictionary dic) -
Uses of ADictionary in org.lionsoul.jcseg.util
Methods in org.lionsoul.jcseg.util with parameters of type ADictionary Modifier and Type Method Description static booleanEntityFormat. isUrlAddress(String str, ADictionary dic)check if the specified string is an URL address or not
-