Uses of Class
edu.brandeis.cs.steele.wn.POS

Packages that use POS
edu.brandeis.cs.steele.wn   
 

Uses of POS in edu.brandeis.cs.steele.wn
 

Fields in edu.brandeis.cs.steele.wn declared as POS
static POS POS.ADJ
           
static POS POS.ADV
           
static POS[] POS.CATS
          A list of all POSs.
protected static POS[] PointerType.CATS
           
static POS POS.NOUN
           
(package private)  POS FileBackedDictionary.DatabaseKey.pos
           
(package private)  POS Pointer.TargetIndex.pos
           
protected  POS Synset.pos
           
protected  POS IndexWord.pos
           
protected static POS[] FileBackedDictionary.POS_KEYS
           
static POS POS.VERB
           
 

Methods in edu.brandeis.cs.steele.wn that return POS
 POS PointerTarget.getPOS()
           
 POS Word.getPOS()
           
 POS Synset.getPOS()
           
 POS IndexWord.getPOS()
           
static POS POS.lookup(java.lang.String key)
          Return the PointerType whose key matches key.
 

Methods in edu.brandeis.cs.steele.wn with parameters of type POS
 boolean PointerType.appliesTo(POS pos)
           
protected static java.lang.String FileBackedDictionary.getDatabaseSuffixName(POS pos)
           
protected static java.lang.String FileBackedDictionary.getDataFilename(POS pos)
           
protected static java.lang.String FileBackedDictionary.getExceptionsFilename(POS pos)
           
protected static java.lang.String FileBackedDictionary.getIndexFilename(POS pos)
           
protected  IndexWord FileBackedDictionary.getIndexWordAt(POS pos, long offset)
           
 Synset FileBackedDictionary.getSynsetAt(POS pos, long offset)
           
protected  Synset FileBackedDictionary.getSynsetAt(POS pos, long offset, java.lang.String line)
           
 java.lang.String DictionaryDatabase.lookupBaseForm(POS pos, java.lang.String derivation)
          Return the base form of an exceptional derivation, if an entry for it exists in the database.
 java.lang.String FileBackedDictionary.lookupBaseForm(POS pos, java.lang.String derivation)
           
 IndexWord DictionaryDatabase.lookupIndexWord(POS pos, java.lang.String lemma)
          Look up a word in the database.
 IndexWord FileBackedDictionary.lookupIndexWord(POS pos, java.lang.String string)
           
 java.util.Enumeration DictionaryDatabase.searchIndexWords(POS pos, java.lang.String substring)
          Return an enumeration of all the IndexWords whose lemmas contain substring as a substring.
 java.util.Enumeration FileBackedDictionary.searchIndexWords(POS pos, java.lang.String substring)
           
 java.util.Enumeration DictionaryDatabase.synsets(POS pos)
          Return an enumeration over all the Synsets in the database.
 java.util.Enumeration FileBackedDictionary.synsets(POS pos)
           
 

Constructors in edu.brandeis.cs.steele.wn with parameters of type POS
FileBackedDictionary.DatabaseKey(POS pos, java.lang.Object key)
           
Pointer.TargetIndex(POS pos, long offset, int index)