Uses of Interface
edu.mit.jwi.IDictionary

Packages that use IDictionary
edu.mit.jwi Provides the main dictionary interface and a default implementation. 
edu.mit.jwi.morph Provides several simple classes that can be used to find the stems of words using Wordnet. 
 

Uses of IDictionary in edu.mit.jwi
 

Subinterfaces of IDictionary in edu.mit.jwi
 interface ICachingDictionary
          Provides a governing interface for dictionaries that cache their results.
 interface IDataSourceDictionary
          A type of IDictionary which uses an instance of an IDataProvider to obtain its data.
 interface IRAMDictionary
          Interface that governs dictionaries that can be completely loaded into memory.
 

Classes in edu.mit.jwi that implement IDictionary
 class CachingDictionary
          A dictionary that caches the results of another dictionary
 class DataSourceDictionary
          Basic implementation of the IDictionary interface.
 class Dictionary
          Basic IDictionary implementation that mounts files on disk and has caching.
 class RAMDictionary
          Default implementation of the IRAMDictionary interface.
 

Fields in edu.mit.jwi declared as IDictionary
protected  IDictionary RAMDictionary.backing
           
 

Methods in edu.mit.jwi that return IDictionary
 IDictionary RAMDictionary.getBackingDictionary()
          Returns the dictionary that backs this instance.
 IDictionary CachingDictionary.getBackingDictionary()
          Returns the dictionary that is wrapped by this dictionary; will never return null
 

Constructors in edu.mit.jwi with parameters of type IDictionary
CachingDictionary(IDictionary backing)
          Constructs a new caching dictionary that caches the results of the specified backing dictionary
RAMDictionary.DataLoader(IDictionary source)
          Constructs a new data loader object, that uses the specified dictionary to load its data.
RAMDictionary(IDictionary dict, int loadPolicy)
          Constructs a new wrapper RAM dictionary that will load the contents of the wrapped dictionary into memory, with the specified load policy
 

Uses of IDictionary in edu.mit.jwi.morph
 

Methods in edu.mit.jwi.morph that return IDictionary
 IDictionary WordnetStemmer.getDictionary()
          Returns the dictionary in use by the stemmer; will not return null
 

Constructors in edu.mit.jwi.morph with parameters of type IDictionary
WordnetStemmer(IDictionary dict)
          Constructs a WordnetStemmer that, naturally, requires a Wordnet dictionary.
 



Copyright © 2011. All Rights Reserved.