本文整理了Java中net.didion.jwnl.data.Word.getPOS()
方法的一些代码示例,展示了Word.getPOS()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Word.getPOS()
方法的具体详情如下:
包路径:net.didion.jwnl.data.Word
类名称:Word
方法名:getPOS
暂无
代码示例来源:origin: net.sf.jwordnet/jwnl
public String toString() {
if (_cachedToString == null) {
Object[] params = new Object[]{getPOS(), getLemma(), getSynset(), new Integer(getIndex())};
_cachedToString = JWNL.resolveMessage("DATA_TOSTRING_005", params);
}
return _cachedToString;
}
代码示例来源:origin: hltfbk/Excitement-Open-Platform
/**
* Ctor
* @param synset
* @param strWord
* @throws WordNetException
*/
public JwnlSensedWord(JwnlSynset synset, String strWord) throws WordNetException {
this.synset = synset;
this.word = strWord;
String wordToLookup = strWord.replace(' ', '_'); // mimic jwnl, which replaces underscores with spaces when looking up
Word[] words = synset.realSynset.getWords();
Word wordObj = lookupWordInWords(words, wordToLookup);
if (wordObj == null)
throw new WordNetException("\""+ strWord + "\" is not a memeber of the given synset " + synset);
this.wordObj = wordObj;
dictionary = synset.jwnlDictionary;
this.pos = JwnlUtils.getWordNetPartOfSpeech( wordObj.getPOS());
}
代码示例来源:origin: hltfbk/Excitement-Open-Platform
/**
* Ctor with an {@link Word} and a dictionary
* This Ctor is quicker than the other.
* @param jwiDictionary
* @throws WordNetException
*/
JwnlSensedWord(Word objWord, JwnlDictionary jwnlDictionary) throws WordNetException {
this.wordObj = objWord;
this.synset = new JwnlSynset(jwnlDictionary, objWord.getSynset());
this.word = objWord.getLemma();
this.dictionary = jwnlDictionary;
this.pos = JwnlUtils.getWordNetPartOfSpeech( wordObj.getPOS());
}
代码示例来源:origin: Noahs-ARK/semafor
w = words[i];
syn = w.getLemma();
pos = w.getPOS();
w = words[j];
lemma = w.getLemma();
pos = w.getPOS();
if(lemma.contains("_")){
String[] parts = lemma.split("_");
w = pTargetNode.getWord();
lemma = w.getLemma();
pos = w.getPOS();
if(lemma.contains("_")){
String[] parts = lemma.split("_");
内容来源于网络,如有侵权,请联系作者删除!