Uses of Class
net.sf.extjwnl.data.IndexWord

Packages that use IndexWord
net.sf.extjwnl.data Classes for extracting and containing data from the dictionary. 
net.sf.extjwnl.data.relationship Tools for finding pointer relationships between words. 
net.sf.extjwnl.dictionary Classes for accessing dictionary information. 
net.sf.extjwnl.dictionary.morph Classes used for simple morphological transformations. 
net.sf.extjwnl.princeton.data Implementations of DictionaryElementFactory for Princeton's release of WordNet. 
 

Uses of IndexWord in net.sf.extjwnl.data
 

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

Methods in net.sf.extjwnl.data with parameters of type IndexWord
 void IndexWordSet.add(IndexWord word)
          Adds an IndexWord to this set.
 

Uses of IndexWord in net.sf.extjwnl.data.relationship
 

Methods in net.sf.extjwnl.data.relationship with parameters of type IndexWord
static int RelationshipFinder.getImmediateRelationship(IndexWord sourceWord, IndexWord targetWord)
          Looks whether the target word is one of the words in one of the synsets of the source word.
 

Uses of IndexWord in net.sf.extjwnl.dictionary
 

Methods in net.sf.extjwnl.dictionary that return IndexWord
 IndexWord Dictionary.createIndexWord(POS pos, String lemma, Synset synset)
          Creates index word.
protected  IndexWord AbstractCachingDictionary.getCachedIndexWord(POSKey key)
           
 IndexWord MapBackedDictionary.getIndexWord(POS pos, String lemma)
           
abstract  IndexWord Dictionary.getIndexWord(POS pos, String lemma)
          Look up a word in the database.
 IndexWord DatabaseBackedDictionary.getIndexWord(POS pos, String lemma)
           
 IndexWord FileBackedDictionary.getIndexWord(POS pos, String lemma)
           
 IndexWord MapBackedDictionary.getRandomIndexWord(POS pos)
           
abstract  IndexWord Dictionary.getRandomIndexWord(POS pos)
           
 IndexWord DatabaseBackedDictionary.getRandomIndexWord(POS pos)
           
 IndexWord FileBackedDictionary.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.
 IndexWord MapBackedDictionary.IndexWordIterator.next()
           
 

Methods in net.sf.extjwnl.dictionary that return types with arguments of type IndexWord
 Iterator<IndexWord> AbstractCachingDictionary.getIndexWordIterator(POS pos)
           
 Iterator<IndexWord> MapBackedDictionary.getIndexWordIterator(POS pos)
           
abstract  Iterator<IndexWord> Dictionary.getIndexWordIterator(POS pos)
          Return an Iterator over all the IndexWords of part-of-speech pos in the database.
 Iterator<IndexWord> DatabaseBackedDictionary.getIndexWordIterator(POS pos)
           
 Iterator<IndexWord> FileBackedDictionary.getIndexWordIterator(POS pos)
           
 Iterator<IndexWord> AbstractCachingDictionary.getIndexWordIterator(POS pos, String substring)
           
 Iterator<IndexWord> MapBackedDictionary.getIndexWordIterator(POS pos, String substring)
           
abstract  Iterator<IndexWord> Dictionary.getIndexWordIterator(POS pos, String substring)
          Return an Iterator over all the IndexWords of part-of-speech pos whose lemmas contain substring as a substring.
 Iterator<IndexWord> DatabaseBackedDictionary.getIndexWordIterator(POS pos, String substring)
           
 Iterator<IndexWord> FileBackedDictionary.getIndexWordIterator(POS pos, String substring)
           
 

Methods in net.sf.extjwnl.dictionary with parameters of type IndexWord
 void AbstractCachingDictionary.addIndexWord(IndexWord indexWord)
           
 void MapBackedDictionary.addIndexWord(IndexWord indexWord)
           
 void Dictionary.addIndexWord(IndexWord indexWord)
          Adds index word to the dictionary.
protected  void AbstractCachingDictionary.cacheIndexWord(POSKey key, IndexWord word)
           
 void AbstractCachingDictionary.removeIndexWord(IndexWord indexWord)
           
 void MapBackedDictionary.removeIndexWord(IndexWord indexWord)
           
 void Dictionary.removeIndexWord(IndexWord indexWord)
          Removes indexWord from the dictionary.
 

Constructors in net.sf.extjwnl.dictionary with parameters of type IndexWord
MapBackedDictionary.IndexWordIterator(Iterator<IndexWord> itr, String searchString, IndexWord startWord)
           
 

Constructor parameters in net.sf.extjwnl.dictionary with type arguments of type IndexWord
MapBackedDictionary.IndexWordIterator(Iterator<IndexWord> itr, String searchString, IndexWord startWord)
           
 

Uses of IndexWord in net.sf.extjwnl.dictionary.morph
 

Methods in net.sf.extjwnl.dictionary.morph that return IndexWord
 IndexWord DefaultMorphologicalProcessor.lookupBaseForm(POS pos, String derivation)
          Lookup the base form of a word.
 

Uses of IndexWord in net.sf.extjwnl.princeton.data
 

Methods in net.sf.extjwnl.princeton.data that return IndexWord
 IndexWord AbstractPrincetonFileDictionaryElementFactory.createIndexWord(POS pos, String line)
           
 IndexWord AbstractPrincetonDatabaseDictionaryElementFactory.createIndexWord(POS pos, String lemma, ResultSet rs)
           
 



Copyright © 2011. All Rights Reserved.