Uses of Interface
edu.mit.jwi.item.ISenseKey

Packages that use ISenseKey
edu.mit.jwi Provides the main dictionary interface and a default implementation. 
edu.mit.jwi.data.parse Provides classes and interfaces that parse lines from Wordnet files. 
edu.mit.jwi.item Provides classes and interfaces that represent the Wordnet data structures. 
 

Uses of ISenseKey in edu.mit.jwi
 

Fields in edu.mit.jwi with type parameters of type ISenseKey
protected  java.util.Map<ISenseKey,IWord> CachingDictionary.ItemCache.keyCache
           
protected  java.util.Map<ISenseKey,ISenseEntry> CachingDictionary.ItemCache.senseCache
           
protected  java.util.Map<ISenseKey,ISenseEntry> RAMDictionary.DictionaryData.senses
           
protected  java.util.Map<ISenseKey,IWord> RAMDictionary.DictionaryData.words
           
 

Methods in edu.mit.jwi with parameters of type ISenseKey
 ISenseEntry RAMDictionary.getSenseEntry(ISenseKey key)
           
 ISenseEntry IDictionary.getSenseEntry(ISenseKey key)
          Retrieves the sense entry for the specified sense key from the database.
 ISenseEntry DataSourceDictionary.getSenseEntry(ISenseKey key)
           
 ISenseEntry CachingDictionary.getSenseEntry(ISenseKey key)
           
 IWord RAMDictionary.getWord(ISenseKey key)
           
 IWord IDictionary.getWord(ISenseKey key)
          Retrieves the word with the specified sense key from the database.
 IWord DataSourceDictionary.getWord(ISenseKey key)
           
 IWord CachingDictionary.getWord(ISenseKey key)
           
protected  ISenseEntry RAMDictionary.DataLoader.makeSenseEntry(ISenseKey key, ISenseEntry old)
          Creates a new sense entry that replicates the specified sense entry.
 ISenseEntry ICachingDictionary.IItemCache.retrieveSenseEntry(ISenseKey key)
          Retrieves the sense entry identified by the specified sense key.
 ISenseEntry CachingDictionary.ItemCache.retrieveSenseEntry(ISenseKey key)
           
 IWord ICachingDictionary.IItemCache.retrieveWord(ISenseKey key)
          Retrieves the word identified by the specified sense key.
 IWord CachingDictionary.ItemCache.retrieveWord(ISenseKey key)
           
 

Uses of ISenseKey in edu.mit.jwi.data.parse
 

Fields in edu.mit.jwi.data.parse with type parameters of type ISenseKey
protected  ILineParser<ISenseKey> SenseLineParser.keyParser
           
 

Methods in edu.mit.jwi.data.parse that return ISenseKey
 ISenseKey SenseKeyParser.parseLine(java.lang.String key)
           
 

Constructor parameters in edu.mit.jwi.data.parse with type arguments of type ISenseKey
SenseLineParser(ILineParser<ISenseKey> keyParser)
          This constructor is marked protected so that the class may be sub-classed, but not directly instantiated.
 

Uses of ISenseKey in edu.mit.jwi.item
 

Classes in edu.mit.jwi.item that implement ISenseKey
 class SenseKey
          Concrete, default implementation of the ISenseKey interface.
 

Methods in edu.mit.jwi.item that return ISenseKey
 ISenseKey Word.getSenseKey()
           
 ISenseKey SenseEntry.getSenseKey()
           
 ISenseKey IWord.getSenseKey()
          Returns the sense key for this word.
 ISenseKey ISenseEntry.getSenseKey()
          Returns the sense key for this sense entry.
 

Methods in edu.mit.jwi.item with parameters of type ISenseKey
 int SenseKey.compareTo(ISenseKey key)
           
static java.lang.String SenseKey.toString(ISenseKey key)
          Returns a a string representation of the specified sense key object.
 

Constructors in edu.mit.jwi.item with parameters of type ISenseKey
SenseEntry(ISenseKey key, int offset, int num, int count)
          Constructs a new sense entry object.
 



Copyright © 2007-2013 Massachusetts Institute of Technology. All Rights Reserved.