Uses of Class
net.didion.jwnl.data.IndexWord

Packages that use IndexWord
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 of DictionaryElementFactory for Princeton's release of WordNet. 
 

Uses of IndexWord in net.didion.jwnl.data
 

Methods in net.didion.jwnl.data that return IndexWord
 IndexWord FileDictionaryElementFactory.createIndexWord(POS pos, java.lang.String line)
          Creates an IndexWord from a line in an index file.
 IndexWord DatabaseDictionaryElementFactory.createIndexWord(POS pos, java.lang.String lemma, java.sql.ResultSet rs)
          Create an IndexWord from a row in the database.
 IndexWord IndexWordSet.getIndexWord(POS p)
          Get the IndexWord associated with p.
 IndexWord[] IndexWordSet.getIndexWordArray()
          Get an array of the IndexWords in this set.
 

Methods in net.didion.jwnl.data with parameters of type IndexWord
 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
 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
 IndexWord MapBackedDictionary.getIndexWord(POS pos, java.lang.String lemma)
           
 IndexWord FileBackedDictionary.getIndexWord(POS pos, java.lang.String lemma)
           
abstract  IndexWord Dictionary.getIndexWord(POS pos, java.lang.String lemma)
          Look up a word in the database.
 IndexWord DatabaseBackedDictionary.getIndexWord(POS pos, java.lang.String lemma)
           
 IndexWord MapBackedDictionary.getRandomIndexWord(POS pos)
           
 IndexWord FileBackedDictionary.getRandomIndexWord(POS pos)
           
abstract  IndexWord Dictionary.getRandomIndexWord(POS pos)
           
 IndexWord DatabaseBackedDictionary.getRandomIndexWord(POS pos)
           
 IndexWord MorphologicalProcessor.lookupBaseForm(POS pos, java.lang.String derivation)
          Try to turn derivation into a word that is found in the index file for pos.
 IndexWord Dictionary.lookupIndexWord(POS pos, java.lang.String lemma)
          Main word lookup procedure.
 

Uses of IndexWord in net.didion.jwnl.dictionary.morph
 

Methods in net.didion.jwnl.dictionary.morph that return IndexWord
 IndexWord DefaultMorphologicalProcessor.lookupBaseForm(POS pos, java.lang.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
 IndexWord AbstractPrincetonFileDictionaryElementFactory.createIndexWord(POS pos, java.lang.String line)
           
 IndexWord AbstractPrincetonDatabaseDictionaryElementFactory.createIndexWord(POS pos, java.lang.String lemma, java.sql.ResultSet rs)