Uses of Class
net.sf.extjwnl.JWNLException

Packages that use JWNLException
net.sf.extjwnl   
net.sf.extjwnl.data Classes for extracting and containing data from the dictionary. 
net.sf.extjwnl.dictionary Classes for accessing dictionary information. 
net.sf.extjwnl.dictionary.database Classes for accessing databases that contain dictionary information. 
net.sf.extjwnl.dictionary.file Classes for accessing files that contain dictionary information. 
net.sf.extjwnl.dictionary.file_manager Classes used by FileBackedDictionary to interface with the filesystem. 
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. 
net.sf.extjwnl.princeton.file Implementations of DictionaryFile used by the various classes of Dictionary to access dictionary files using the naming convention used in Princeton's release of WordNet. 
net.sf.extjwnl.util.factory Classes involved in reflective creation of JWNL components. 
 

Uses of JWNLException in net.sf.extjwnl
 

Methods in net.sf.extjwnl that throw JWNLException
static void JWNL.initialize(InputStream propertiesStream)
          Parses a properties file and sets the ready state at various points.
 

Uses of JWNLException in net.sf.extjwnl.data
 

Methods in net.sf.extjwnl.data that throw JWNLException
 Exc FileDictionaryElementFactory.createExc(POS pos, String line)
          Create an Exc from a line in an exception file.
 Exc DatabaseDictionaryElementFactory.createExc(POS pos, String derivation, ResultSet rs)
          Create an Exc from a row in the database.
 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.
 Synset DatabaseDictionaryElementFactory.createSynset(POS pos, long offset, ResultSet synset, ResultSet words, ResultSet pointers, ResultSet verbFrames)
          Create a Synset from a row in the database.
 Synset FileDictionaryElementFactory.createSynset(POS pos, String line)
          Creates a synset from a line in a data file.
 String Word.getSummary()
          Returns the summary calculated among all senses.
 String Word.getSummary(List<Synset> senses)
          Returns the summary, calculated among given set of senses.
 void BaseDictionaryElement.setDictionary(Dictionary dictionary)
           
 void PointerTarget.setDictionary(Dictionary dictionary)
           
 void Synset.setDictionary(Dictionary dictionary)
           
 

Constructors in net.sf.extjwnl.data that throw JWNLException
Exc(Dictionary dictionary, POS pos, String lemma, List<String> exceptions)
          Creates a new exception entry.
IndexWord(Dictionary dictionary, String lemma, POS pos)
           
IndexWord(Dictionary dictionary, String lemma, POS pos, long[] synsetOffsets)
           
IndexWord(Dictionary dictionary, String lemma, POS pos, Synset synset)
           
Synset(Dictionary dictionary, POS pos)
           
Synset(Dictionary dictionary, POS pos, long offset)
           
 

Uses of JWNLException in net.sf.extjwnl.dictionary
 

Methods in net.sf.extjwnl.dictionary that throw JWNLException
 void Dictionary.addElement(DictionaryElement element)
          Adds dictionary element to the dictionary.
 void AbstractCachingDictionary.addException(Exc exc)
           
 void MapBackedDictionary.addException(Exc exc)
           
 void Dictionary.addException(Exc exc)
          Adds exception to the dictionary.
 void AbstractCachingDictionary.addIndexWord(IndexWord indexWord)
           
 void MapBackedDictionary.addIndexWord(IndexWord indexWord)
           
 void Dictionary.addIndexWord(IndexWord indexWord)
          Adds index word to the dictionary.
 void AbstractCachingDictionary.addSynset(Synset synset)
           
 void MapBackedDictionary.addSynset(Synset synset)
           
 void Dictionary.addSynset(Synset synset)
          Adds synset to the dictionary.
protected  void AbstractCachingDictionary.cacheAll()
           
protected  void AbstractCachingDictionary.cachePOS(POS pos)
           
 Exc Dictionary.createException(POS pos, String lemma, List<String> exceptions)
          Creates an exception in the dictionary.
 IndexWord Dictionary.createIndexWord(POS pos, String lemma, Synset synset)
          Creates index word.
 Synset Dictionary.createSynset(POS pos)
          Creates synset of the specified part of speech.
 void MapBackedDictionary.delete()
           
 void Dictionary.delete()
           
 void FileBackedDictionary.delete()
           
 void AbstractCachingDictionary.edit()
           
 void MapBackedDictionary.edit()
           
 void Dictionary.edit()
          Puts the dictionary into edit mode.
 void FileBackedDictionary.edit()
           
static Dictionary Dictionary.getDatabaseBackedInstance(String dbURL)
          Returns DatabaseBackedDictionary instance with default configuration.
abstract  Exc Dictionary.getException(POS pos, String derivation)
          Lookup derivation in the exceptions file of part-of-speech pos and return an Exc object containing the results.
 Exc DatabaseBackedDictionary.getException(POS pos, String derivation)
           
 Exc FileBackedDictionary.getException(POS pos, String derivation)
           
 Iterator<Exc> AbstractCachingDictionary.getExceptionIterator(POS pos)
           
abstract  Iterator<Exc> Dictionary.getExceptionIterator(POS pos)
          Return an Iterator over all the Exceptions in the database.
 Iterator<Exc> DatabaseBackedDictionary.getExceptionIterator(POS pos)
           
 Iterator<Exc> FileBackedDictionary.getExceptionIterator(POS pos)
           
static Dictionary Dictionary.getFileBackedInstance(String dictionaryPath)
          Returns FileBackedDictionary instance with default configuration.
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)
           
 Iterator<IndexWord> AbstractCachingDictionary.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)
           
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)
           
static Dictionary Dictionary.getInstance(InputSource properties)
          Parses properties and creates a dictionary.
static Dictionary Dictionary.getInstance(InputStream properties)
          Parses a properties file and creates a dictionary.
static Dictionary Dictionary.getMapBackedInstance(String dictionaryPath)
          Returns MapBackedDictionary instance with default configuration.
 IndexWord MapBackedDictionary.getRandomIndexWord(POS pos)
           
abstract  IndexWord Dictionary.getRandomIndexWord(POS pos)
           
 IndexWord DatabaseBackedDictionary.getRandomIndexWord(POS pos)
           
 IndexWord FileBackedDictionary.getRandomIndexWord(POS pos)
           
abstract  Synset Dictionary.getSynsetAt(POS pos, long offset)
          Return the Synset at offset offset from the database.
 Synset DatabaseBackedDictionary.getSynsetAt(POS pos, long offset)
           
 Synset FileBackedDictionary.getSynsetAt(POS pos, long offset)
           
 Iterator<Synset> AbstractCachingDictionary.getSynsetIterator(POS pos)
           
abstract  Iterator<Synset> Dictionary.getSynsetIterator(POS pos)
          Return an Iterator over all the Synsets of part-of-speech pos in the database.
 Iterator<Synset> DatabaseBackedDictionary.getSynsetIterator(POS pos)
           
 Iterator<Synset> FileBackedDictionary.getSynsetIterator(POS pos)
           
 List<String> MorphologicalProcessor.lookupAllBaseForms(POS pos, String derivation)
          Return all the base forms of derivation.
 IndexWordSet Dictionary.lookupAllIndexWords(String lemma)
          Return a set of IndexWords, with each element in the set corresponding to a part-of-speech of word.
 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.
 void Dictionary.removeElement(DictionaryElement element)
          Removes the dictionary element from the dictionary.
 void AbstractCachingDictionary.removeException(Exc exc)
           
 void MapBackedDictionary.removeException(Exc exc)
           
 void Dictionary.removeException(Exc exc)
          Removes the exc from the dictionary.
 void AbstractCachingDictionary.removeIndexWord(IndexWord indexWord)
           
 void MapBackedDictionary.removeIndexWord(IndexWord indexWord)
           
 void Dictionary.removeIndexWord(IndexWord indexWord)
          Removes indexWord from the dictionary.
 void AbstractCachingDictionary.removeSynset(Synset synset)
           
 void MapBackedDictionary.removeSynset(Synset synset)
           
 void Dictionary.removeSynset(Synset synset)
          Removes synset from the dictionary.
 void MapBackedDictionary.save()
           
 void Dictionary.save()
          Saves the dictionary.
 void FileBackedDictionary.save()
           
 

Constructors in net.sf.extjwnl.dictionary that throw JWNLException
AbstractCachingDictionary(Document doc)
           
DatabaseBackedDictionary(Document doc)
           
Dictionary(Document doc)
           
FileBackedDictionary(Document doc)
           
MapBackedDictionary(Document doc)
           
 

Uses of JWNLException in net.sf.extjwnl.dictionary.database
 

Methods in net.sf.extjwnl.dictionary.database that throw JWNLException
protected  Query DatabaseManagerImpl.createPOSIdQuery(POS pos, int id, String sql)
           
protected  Query DatabaseManagerImpl.createPOSOffsetQuery(POS pos, long offset, String sql)
           
protected  Query DatabaseManagerImpl.createPOSQuery(POS pos, String sql)
           
protected  Query DatabaseManagerImpl.createPOSStringQuery(POS pos, String str, String sql)
           
 Connection ConnectionManager.getConnection()
           
 Query DatabaseManagerImpl.getExceptionQuery(POS pos, String derivation)
           
 Query DatabaseManager.getExceptionQuery(POS pos, String derivation)
           
 Query DatabaseManagerImpl.getExceptionsQuery(POS pos)
           
 Query DatabaseManager.getExceptionsQuery(POS pos)
           
 Query DatabaseManagerImpl.getIndexWordLemmasQuery(POS pos)
           
 Query DatabaseManager.getIndexWordLemmasQuery(POS pos)
           
 Query DatabaseManagerImpl.getIndexWordLemmasQuery(POS pos, String substring)
           
 Query DatabaseManager.getIndexWordLemmasQuery(POS pos, String substring)
           
 Query DatabaseManagerImpl.getIndexWordSynsetsQuery(POS pos, String lemma)
           
 Query DatabaseManager.getIndexWordSynsetsQuery(POS pos, String lemma)
           
 Query DatabaseManagerImpl.getPointerQuery(POS pos, long offset)
           
 Query DatabaseManager.getPointerQuery(POS pos, long offset)
           
 Query ConnectionManager.getQuery(String sql)
           
 Query DatabaseManagerImpl.getRandomIndexWordQuery(POS pos)
           
 Query DatabaseManager.getRandomIndexWordQuery(POS pos)
           
 Query DatabaseManagerImpl.getSynsetQuery(POS pos, long offset)
           
 Query DatabaseManager.getSynsetQuery(POS pos, long offset)
           
 Query DatabaseManagerImpl.getSynsetsQuery(POS pos)
           
 Query DatabaseManager.getSynsetsQuery(POS pos)
           
 Query DatabaseManagerImpl.getSynsetWordQuery(POS pos, long offset)
           
 Query DatabaseManager.getSynsetWordQuery(POS pos, long offset)
           
 Query DatabaseManagerImpl.getVerbFrameQuery(POS pos, long offset)
           
 Query DatabaseManager.getVerbFrameQuery(POS pos, long offset)
           
 

Constructors in net.sf.extjwnl.dictionary.database that throw JWNLException
DatabaseManagerImpl(Dictionary dictionary, Map<String,Param> params)
           
 

Uses of JWNLException in net.sf.extjwnl.dictionary.file
 

Methods in net.sf.extjwnl.dictionary.file that throw JWNLException
 void DictionaryCatalogSet.save()
           
 void DictionaryFile.save()
          Saves the file.
 void DictionaryCatalog.save()
           
 

Constructors in net.sf.extjwnl.dictionary.file that throw JWNLException
DictionaryCatalog(Dictionary dictionary, DictionaryFileType fileType, Class desiredDictionaryFileType, Map<String,Param> params)
           
DictionaryCatalogSet(Dictionary dictionary, Map<String,Param> params, Class desiredDictionaryFileType)
          Creates a catalog set of the specified type of file using files in the specified dictionary directory.
 

Uses of JWNLException in net.sf.extjwnl.dictionary.file_manager
 

Methods in net.sf.extjwnl.dictionary.file_manager that throw JWNLException
 void FileManager.save()
          Saves the files.
 void FileManagerImpl.save()
           
 

Constructors in net.sf.extjwnl.dictionary.file_manager that throw JWNLException
FileManagerImpl(Dictionary dictionary, Map<String,Param> params)
           
 

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

Methods in net.sf.extjwnl.dictionary.morph that throw JWNLException
protected  boolean AbstractDelegatingOperation.delegate(POS pos, String lemma, BaseFormSet forms, String key)
           
 boolean Operation.execute(POS pos, String lemma, BaseFormSet baseForms)
          Executes the operation.
 boolean TokenizerOperation.execute(POS pos, String lemma, BaseFormSet forms)
           
 boolean LookupExceptionsOperation.execute(POS pos, String derivation, BaseFormSet form)
           
 boolean DetachSuffixesOperation.execute(POS pos, String derivation, BaseFormSet forms)
           
 boolean LookupIndexWordOperation.execute(POS pos, String lemma, BaseFormSet baseForms)
           
 List<String> DefaultMorphologicalProcessor.lookupAllBaseForms(POS pos, String derivation)
           
 IndexWord DefaultMorphologicalProcessor.lookupBaseForm(POS pos, String derivation)
          Lookup the base form of a word.
 

Constructors in net.sf.extjwnl.dictionary.morph that throw JWNLException
AbstractDelegatingOperation(Dictionary dictionary, Map<String,Param> params)
           
DefaultMorphologicalProcessor(Dictionary dictionary, Map<String,Param> params)
           
DetachSuffixesOperation(Dictionary dictionary, Map<String,Param> params)
           
LookupExceptionsOperation(Dictionary dictionary, Map<String,Param> params)
           
TokenizerOperation(Dictionary dictionary, Map<String,Param> params)
           
 

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

Methods in net.sf.extjwnl.princeton.data that throw JWNLException
 Exc AbstractPrincetonFileDictionaryElementFactory.createExc(POS pos, String line)
           
 Exc AbstractPrincetonDatabaseDictionaryElementFactory.createExc(POS pos, String derivation, ResultSet rs)
           
 IndexWord AbstractPrincetonFileDictionaryElementFactory.createIndexWord(POS pos, String line)
           
 IndexWord AbstractPrincetonDatabaseDictionaryElementFactory.createIndexWord(POS pos, String lemma, ResultSet rs)
           
 Synset AbstractPrincetonDatabaseDictionaryElementFactory.createSynset(POS pos, long offset, ResultSet synsets, ResultSet words, ResultSet pointers, ResultSet verbFrames)
           
 Synset AbstractPrincetonFileDictionaryElementFactory.createSynset(POS pos, String line)
           
 void AbstractPrincetonDictionaryElementFactory.setDictionary(Dictionary dictionary)
           
 

Uses of JWNLException in net.sf.extjwnl.princeton.file
 

Methods in net.sf.extjwnl.princeton.file that throw JWNLException
 void PrincetonRandomAccessDictionaryFile.save()
           
 

Uses of JWNLException in net.sf.extjwnl.util.factory
 

Methods in net.sf.extjwnl.util.factory that throw JWNLException
 Object Param.create()
           
 Object ParamList.create()
           
 Object AbstractValueParam.create()
          If the value of this parameter is a class name, and that class is creatable, this method will create an instance of it using this Param parameters.
 void Owned.setDictionary(Dictionary dictionary)
          Sets the dictionary this object belongs to.
 



Copyright © 2011. All Rights Reserved.