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 that return types with arguments of type IndexWord
 Collection<IndexWord> IndexWordSet.getIndexWordCollection()
          Returns a collection 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(POS pos, Object key)
           
 IndexWord FileBackedDictionary.getIndexWord(POS pos, String lemma)
           
abstract  IndexWord Dictionary.getIndexWord(POS pos, String lemma)
          Looks up a word in the database.
 IndexWord MapBackedDictionary.getIndexWord(POS pos, String lemma)
           
 IndexWord DatabaseBackedDictionary.getIndexWord(POS pos, String lemma)
           
 IndexWord FileBackedDictionary.getRandomIndexWord(POS pos)
           
abstract  IndexWord Dictionary.getRandomIndexWord(POS pos)
           
 IndexWord MapBackedDictionary.getRandomIndexWord(POS pos)
           
 IndexWord DatabaseBackedDictionary.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)
          Looks up a word lemma.
 IndexWord AbstractCachingDictionary.IndexWordIterator.next()
           
 

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

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

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

Constructor parameters in net.sf.extjwnl.dictionary with type arguments of type IndexWord
AbstractCachingDictionary.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 first 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 © 2013. All Rights Reserved.