Uses of Class
net.didion.jwnl.data.IndexWord
-
Packages that use IndexWord Package Description net.didion.jwnl.data Classes for extracting and containing data from the dictionary.net.didion.jwnl.data.relationship Tools for finding pointer relationships between words.net.didion.jwnl.dictionary Classes for acessing dictionary information.net.didion.jwnl.dictionary.morph net.didion.jwnl.princeton.data Implementations ofDictionaryElementFactory
for Princeton's release of WordNet. -
-
Uses of IndexWord in net.didion.jwnl.data
Methods in net.didion.jwnl.data that return IndexWord Modifier and Type Method Description IndexWord
DatabaseDictionaryElementFactory. createIndexWord(POS pos, String lemma, ResultSet rs)
Create an IndexWord from a row in the database.IndexWord
FileDictionaryElementFactory. createIndexWord(POS pos, String line)
Creates an IndexWord from a line in an index file.IndexWord
IndexWordSet. getIndexWord(POS p)
Get the IndexWord associated withp
.IndexWord[]
IndexWordSet. getIndexWordArray()
Get an array of the IndexWords in this set.Methods in net.didion.jwnl.data with parameters of type IndexWord Modifier and Type Method Description void
IndexWordSet. add(IndexWord word)
Add an IndexWord to this set -
Uses of IndexWord in net.didion.jwnl.data.relationship
Methods in net.didion.jwnl.data.relationship with parameters of type IndexWord Modifier and Type Method Description int
RelationshipFinder. getImmediateRelationship(IndexWord sourceWord, IndexWord targetWord)
Looks at whether the target word is one of the words in one of the synsets of the source word. -
Uses of IndexWord in net.didion.jwnl.dictionary
Methods in net.didion.jwnl.dictionary that return IndexWord Modifier and Type Method Description protected IndexWord
AbstractCachingDictionary. getCachedIndexWord(POSKey key)
IndexWord
DatabaseBackedDictionary. getIndexWord(POS pos, String lemma)
abstract IndexWord
Dictionary. getIndexWord(POS pos, String lemma)
Look up a word in the database.IndexWord
FileBackedDictionary. getIndexWord(POS pos, String lemma)
IndexWord
MapBackedDictionary. getIndexWord(POS pos, String lemma)
IndexWord
DatabaseBackedDictionary. getRandomIndexWord(POS pos)
abstract IndexWord
Dictionary. getRandomIndexWord(POS pos)
IndexWord
FileBackedDictionary. getRandomIndexWord(POS pos)
IndexWord
MapBackedDictionary. getRandomIndexWord(POS pos)
IndexWord
MorphologicalProcessor. lookupBaseForm(POS pos, String derivation)
Try to turn derivation into a word that is found in the index file for pos.IndexWord
Dictionary. lookupIndexWord(POS pos, String lemma)
Main word lookup procedure.Methods in net.didion.jwnl.dictionary with parameters of type IndexWord Modifier and Type Method Description protected void
AbstractCachingDictionary. cacheIndexWord(POSKey key, IndexWord word)
-
Uses of IndexWord in net.didion.jwnl.dictionary.morph
Methods in net.didion.jwnl.dictionary.morph that return IndexWord Modifier and Type Method Description IndexWord
DefaultMorphologicalProcessor. lookupBaseForm(POS pos, String derivation)
Lookup the base form of a word. -
Uses of IndexWord in net.didion.jwnl.princeton.data
Methods in net.didion.jwnl.princeton.data that return IndexWord Modifier and Type Method Description IndexWord
AbstractPrincetonDatabaseDictionaryElementFactory. createIndexWord(POS pos, String lemma, ResultSet rs)
IndexWord
AbstractPrincetonFileDictionaryElementFactory. createIndexWord(POS pos, String line)
-