Class UserMorphData
java.lang.Object
org.apache.lucene.analysis.ja.dict.UserMorphData
- All Implemented Interfaces:
JaMorphData
,MorphData
Morphological information for user dictionary.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate String[]
getAllFeaturesArray
(int wordId) getBaseForm
(int morphId, char[] surface, int off, int len) Get base form of wordprivate String
getFeature
(int wordId, int... fields) getInflectionForm
(int wordId) Get inflection form of tokensgetInflectionType
(int morphId) Get inflection type of tokensint
getLeftId
(int wordId) Get left id of specified wordgetPartOfSpeech
(int morphId) Get Part-Of-Speech of tokensgetPronunciation
(int morphId, char[] surface, int off, int len) Get pronunciation of tokensgetReading
(int morphId, char[] surface, int off, int len) Get reading of tokensint
getRightId
(int wordId) Get right id of specified wordint
getWordCost
(int wordId) Get word cost of specified word
-
Field Details
-
WORD_COST
public static final int WORD_COST- See Also:
-
LEFT_ID
public static final int LEFT_ID- See Also:
-
RIGHT_ID
public static final int RIGHT_ID- See Also:
-
data
-
-
Constructor Details
-
UserMorphData
UserMorphData(String[] data)
-
-
Method Details
-
getLeftId
public int getLeftId(int wordId) Description copied from interface:MorphData
Get left id of specified word -
getRightId
public int getRightId(int wordId) Description copied from interface:MorphData
Get right id of specified word- Specified by:
getRightId
in interfaceMorphData
- Returns:
- right id
-
getWordCost
public int getWordCost(int wordId) Description copied from interface:MorphData
Get word cost of specified word- Specified by:
getWordCost
in interfaceMorphData
- Returns:
- word's cost
-
getReading
Description copied from interface:JaMorphData
Get reading of tokens- Specified by:
getReading
in interfaceJaMorphData
- Parameters:
morphId
- word ID of token- Returns:
- Reading of the token
-
getPartOfSpeech
Description copied from interface:JaMorphData
Get Part-Of-Speech of tokens- Specified by:
getPartOfSpeech
in interfaceJaMorphData
- Parameters:
morphId
- word ID of token- Returns:
- Part-Of-Speech of the token
-
getBaseForm
Description copied from interface:JaMorphData
Get base form of word- Specified by:
getBaseForm
in interfaceJaMorphData
- Parameters:
morphId
- word ID of token- Returns:
- Base form (only different for inflected words, otherwise null)
-
getPronunciation
Description copied from interface:JaMorphData
Get pronunciation of tokens- Specified by:
getPronunciation
in interfaceJaMorphData
- Parameters:
morphId
- word ID of token- Returns:
- Pronunciation of the token
-
getInflectionType
Description copied from interface:JaMorphData
Get inflection type of tokens- Specified by:
getInflectionType
in interfaceJaMorphData
- Parameters:
morphId
- word ID of token- Returns:
- inflection type, or null
-
getInflectionForm
Description copied from interface:JaMorphData
Get inflection form of tokens- Specified by:
getInflectionForm
in interfaceJaMorphData
- Parameters:
wordId
- word ID of token- Returns:
- inflection form, or null
-
getAllFeaturesArray
-
getFeature
-