Uses of Interface
de.tudarmstadt.ukp.jwktl.api.IWiktionaryEntry

Packages that use IWiktionaryEntry
de.tudarmstadt.ukp.jwktl.api   
de.tudarmstadt.ukp.jwktl.api.entry   
de.tudarmstadt.ukp.jwktl.api.filter   
 

Uses of IWiktionaryEntry in de.tudarmstadt.ukp.jwktl.api
 

Methods in de.tudarmstadt.ukp.jwktl.api that return IWiktionaryEntry
 IWiktionaryEntry IWiktionarySense.getEntry()
          Returns a reference to the IWiktionaryEntry that contains this sense.
 IWiktionaryEntry IWiktionaryPage.getEntry(int index)
          Returns the IWiktionaryEntry with the given index.
 IWiktionaryEntry IWiktionaryEdition.getEntryForId(long entryId)
          Returns the IWiktionaryEntry with the given entry id.
 IWiktionaryEntry IWiktionaryEdition.getEntryForId(long pageId, int entryIdx)
          Returns the IWiktionaryEntry with the given page id and entry index.
 IWiktionaryEntry IWiktionaryEdition.getEntryForWord(String word, int entryIdx)
          Returns the IWiktionaryEntry encoded on a page with the given title and being part of an entry with the specified entry index.
 

Methods in de.tudarmstadt.ukp.jwktl.api that return types with arguments of type IWiktionaryEntry
 IWiktionaryIterator<IWiktionaryEntry> IWiktionary.getAllEntries()
          Returns an iterator over all IWiktionaryEntrys within the Wiktionary edition.
 IWiktionaryIterator<IWiktionaryEntry> IWiktionary.getAllEntries(boolean sortByTitle)
          Returns an iterator over all IWiktionaryEntrys within the Wiktionary edition.
 IWiktionaryIterator<IWiktionaryEntry> IWiktionary.getAllEntries(boolean sortByTitle, boolean normalize)
          Returns an iterator over all IWiktionaryEntrys within the Wiktionary edition.
 IWiktionaryIterator<IWiktionaryEntry> IWiktionary.getAllEntries(IWiktionaryEntryFilter filter)
          Returns an iterator over all IWiktionaryEntrys within the Wiktionary edition.
 IWiktionaryIterator<IWiktionaryEntry> IWiktionary.getAllEntries(IWiktionaryEntryFilter filter, boolean sortByTitle)
          Returns an iterator over all IWiktionaryEntrys within the Wiktionary edition.
 IWiktionaryIterator<IWiktionaryEntry> IWiktionary.getAllEntries(IWiktionaryEntryFilter filter, boolean sortByTitle, boolean normalize)
          Returns an iterator over all IWiktionaryEntrys within the Wiktionary edition.
 List<IWiktionaryEntry> IWiktionaryPage.getEntries()
          Returns the list of all IWiktionaryEntrys.
 List<IWiktionaryEntry> IWiktionary.getEntriesForWord(String word)
          Returns a list of IWiktionaryEntrys encoded on a page with the given title.
 List<IWiktionaryEntry> IWiktionary.getEntriesForWord(String word, boolean normalize)
          Returns a list of IWiktionaryEntrys encoded on a page with the given title.
 List<IWiktionaryEntry> IWiktionary.getEntriesForWord(String word, IWiktionaryEntryFilter filter)
          Returns a list of IWiktionaryEntrys encoded on a page with the given title.
 List<IWiktionaryEntry> IWiktionary.getEntriesForWord(String word, IWiktionaryEntryFilter filter, boolean normalize)
          Returns a list of IWiktionaryEntrys encoded on a page with the given title.
 

Methods in de.tudarmstadt.ukp.jwktl.api with parameters of type IWiktionaryEntry
 String WiktionaryFormatter.formatEntry(IWiktionaryEntry entry)
          Returns a string representation of the given entry using separate prefixed lines for each information type.
 String WiktionaryFormatter.formatHeader(IWiktionaryEntry entry)
          Returns the entry key, word, word language, and part of speech of the given entry.
 

Uses of IWiktionaryEntry in de.tudarmstadt.ukp.jwktl.api.entry
 

Classes in de.tudarmstadt.ukp.jwktl.api.entry that implement IWiktionaryEntry
 class WiktionaryEntry
          Default implementation of the IWiktionaryEntry interface.
 

Methods in de.tudarmstadt.ukp.jwktl.api.entry that return IWiktionaryEntry
 IWiktionaryEntry WiktionarySense.getEntry()
           
 IWiktionaryEntry BerkeleyDBWiktionaryEdition.getEntryForId(long entryId)
           
 IWiktionaryEntry WiktionaryEdition.getEntryForId(long pageId, int entryIdx)
           
 IWiktionaryEntry WiktionaryEdition.getEntryForWord(String word, int entryIdx)
           
 

Methods in de.tudarmstadt.ukp.jwktl.api.entry that return types with arguments of type IWiktionaryEntry
 IWiktionaryIterator<IWiktionaryEntry> AbstractWiktionary.getAllEntries()
           
 IWiktionaryIterator<IWiktionaryEntry> AbstractWiktionary.getAllEntries(boolean sortByTitle)
           
 IWiktionaryIterator<IWiktionaryEntry> AbstractWiktionary.getAllEntries(boolean sortByTitle, boolean normalize)
           
 IWiktionaryIterator<IWiktionaryEntry> AbstractWiktionary.getAllEntries(IWiktionaryEntryFilter filter)
           
 IWiktionaryIterator<IWiktionaryEntry> AbstractWiktionary.getAllEntries(IWiktionaryEntryFilter filter, boolean sortByTitle)
           
 IWiktionaryIterator<IWiktionaryEntry> WiktionaryEdition.getAllEntries(IWiktionaryEntryFilter filter, boolean sortByTitle, boolean normalize)
           
abstract  IWiktionaryIterator<IWiktionaryEntry> AbstractWiktionary.getAllEntries(IWiktionaryEntryFilter filter, boolean sortByTitle, boolean normalize)
           
 IWiktionaryIterator<IWiktionaryEntry> WiktionaryCollection.getAllEntries(IWiktionaryEntryFilter filter, boolean sortByTitle, boolean normalize)
           
 List<IWiktionaryEntry> WiktionaryPage.getEntries()
           
 List<IWiktionaryEntry> AbstractWiktionary.getEntriesForWord(String word)
           
 List<IWiktionaryEntry> AbstractWiktionary.getEntriesForWord(String word, boolean normalize)
           
 List<IWiktionaryEntry> AbstractWiktionary.getEntriesForWord(String word, IWiktionaryEntryFilter filter)
           
 List<IWiktionaryEntry> WiktionaryEdition.getEntriesForWord(String word, IWiktionaryEntryFilter filter, boolean normalize)
           
abstract  List<IWiktionaryEntry> AbstractWiktionary.getEntriesForWord(String word, IWiktionaryEntryFilter filter, boolean normalize)
           
 List<IWiktionaryEntry> WiktionaryCollection.getEntriesForWord(String word, IWiktionaryEntryFilter filter, boolean normalize)
           
 

Constructors in de.tudarmstadt.ukp.jwktl.api.entry with parameters of type IWiktionaryEntry
BerkeleyDBWiktionaryEdition.WiktionaryEntryProxy(IWiktionaryEntry entry)
          Instanciates an entry proxy to the given referenced entry.
 

Uses of IWiktionaryEntry in de.tudarmstadt.ukp.jwktl.api.filter
 

Methods in de.tudarmstadt.ukp.jwktl.api.filter with parameters of type IWiktionaryEntry
 boolean WiktionaryEntryFilter.accept(IWiktionaryEntry entry)
           
 boolean IWiktionaryEntryFilter.accept(IWiktionaryEntry entry)
          Return true if the given entry should be accepted or false if it should be filtered out.
protected  boolean WiktionaryEntryFilter.acceptPartOfSpeech(IWiktionaryEntry entry)
           
protected  boolean WiktionaryEntryFilter.acceptWordLanguage(IWiktionaryEntry entry)
           
 



Copyright © 2011-2013 Ubiquitous Knowledge Processing (UKP) Lab. All Rights Reserved.