?? dictionaries.java
字號:
/**
* Copyright 2007 The Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.paoding.analysis.knife;
import net.paoding.analysis.dictionary.Dictionary;
import net.paoding.analysis.dictionary.support.detection.DifferenceListener;
/**
* 中文字典緩存根據地,為{@link CJKKnife}所用。<br>
* 從本對象可以獲取中文需要的相關字典。包括詞匯表、姓氏表、計量單位表、忽略的詞或單字等。
* <p>
*
* @author Zhiliang Wang [qieqie.wang@gmail.com]
*
* @see CJKKnife
*
* @since 1.0
*/
public interface Dictionaries {
/**
* 詞匯表字典
*
* @return
*/
public Dictionary getVocabularyDictionary();
/**
* 姓氏字典
*
* @return
*/
public Dictionary getConfucianFamilyNamesDictionary();
/**
* 忽略的詞語
*
* @return
*/
public Dictionary getNoiseCharactorsDictionary();
/**
* 忽略的單字
*
* @return
*/
public Dictionary getNoiseWordsDictionary();
/**
* 計量單位
*
* @return
*/
public Dictionary getUnitsDictionary();
/**
* lantin+cjk, num+cjk
* @return
*/
public Dictionary getCombinatoricsDictionary();
/**
*
* @param l
*/
public void startDetecting(int interval, DifferenceListener l);
public void stopDetecting();
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -