|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use POS | |
---|---|
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. |
Uses of POS in net.sf.extjwnl.data |
---|
Fields in net.sf.extjwnl.data declared as POS | |
---|---|
static POS |
POS.ADJECTIVE
|
static POS |
POS.ADJECTIVE_SATELLITE
|
static POS |
POS.ADVERB
|
static POS |
POS.NOUN
|
protected POS |
Synset.pos
|
static POS |
POS.VERB
|
Methods in net.sf.extjwnl.data that return POS | |
---|---|
POS |
IndexWord.getPOS()
Returns the word's part-of-speech. |
POS |
Word.getPOS()
Returns the part of speech of this word. |
abstract POS |
PointerTarget.getPOS()
|
POS |
Exc.getPOS()
|
POS |
DictionaryElement.getPOS()
Returns element's part of speech. |
POS |
Synset.getPOS()
|
static POS |
POS.getPOSForKey(String key)
Return the POS whose key matches key,
or null if the key does not match any POS. |
static POS |
POS.getPOSForLabel(String label)
Return the POS whose key matches label,
or null if the label does not match any POS. |
POS |
Pointer.getTargetPOS()
|
Methods in net.sf.extjwnl.data that return types with arguments of type POS | |
---|---|
static List<POS> |
POS.getAllPOS()
|
Methods in net.sf.extjwnl.data with parameters of type POS | |
---|---|
boolean |
PointerType.appliesTo(POS pos)
Returns whether or not this PointerType can be associated with pos. |
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. |
static List<PointerType> |
PointerType.getAllPointerTypesForPOS(POS pos)
|
IndexWord |
IndexWordSet.getIndexWord(POS p)
Returns the IndexWord associated with POS p. |
int |
IndexWordSet.getSenseCount(POS pos)
Finds out how many senses the word with part-of-speech pos has. |
boolean |
IndexWordSet.isValidPOS(POS pos)
Return true if there is a word with part-of-speech pos in this set. |
void |
IndexWordSet.remove(POS p)
Removes the IndexWords associated with POS p from this set. |
Constructors in net.sf.extjwnl.data with parameters of type POS | |
---|---|
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)
|
|
Pointer(PointerTarget source,
PointerType pointerType,
POS targetPOS,
long targetOffset,
int targetIndex)
|
|
Synset(Dictionary dictionary,
POS pos)
|
|
Synset(Dictionary dictionary,
POS pos,
long offset)
|
Uses of POS in net.sf.extjwnl.dictionary |
---|
Fields in net.sf.extjwnl.dictionary with type parameters of type POS | |
---|---|
protected HashMap<POS,Long> |
Dictionary.maxOffset
|
Methods in net.sf.extjwnl.dictionary that return POS | |
---|---|
POS |
POSKey.getPOS()
|
Methods in net.sf.extjwnl.dictionary with parameters of type POS | |
---|---|
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. |
Exc |
MapBackedDictionary.getException(POS pos,
String derivation)
|
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)
|
Iterator<Exc> |
MapBackedDictionary.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)
|
IndexWord |
MapBackedDictionary.getIndexWord(POS pos,
String lemma)
|
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)
|
Iterator<IndexWord> |
MapBackedDictionary.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)
|
Iterator<IndexWord> |
MapBackedDictionary.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)
|
IndexWord |
MapBackedDictionary.getRandomIndexWord(POS pos)
|
abstract IndexWord |
Dictionary.getRandomIndexWord(POS pos)
|
IndexWord |
DatabaseBackedDictionary.getRandomIndexWord(POS pos)
|
IndexWord |
FileBackedDictionary.getRandomIndexWord(POS pos)
|
Synset |
MapBackedDictionary.getSynsetAt(POS pos,
long offset)
|
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)
|
Iterator<Synset> |
MapBackedDictionary.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)
|
Map<Object,DictionaryElement> |
MapBackedDictionary.getTable(POS pos,
DictionaryFileType fileType)
|
List<String> |
MorphologicalProcessor.lookupAllBaseForms(POS pos,
String derivation)
Return all the base forms of derivation. |
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. |
Constructors in net.sf.extjwnl.dictionary with parameters of type POS | |
---|---|
POSKey(POS pos,
long offset)
|
|
POSKey(POS pos,
String lemma)
|
Uses of POS in net.sf.extjwnl.dictionary.database |
---|
Fields in net.sf.extjwnl.dictionary.database with type parameters of type POS | |
---|---|
protected Map<POS,net.sf.extjwnl.dictionary.database.DatabaseManagerImpl.MinMax> |
DatabaseManagerImpl.minMaxIds
|
Methods in net.sf.extjwnl.dictionary.database with parameters of type POS | |
---|---|
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)
|
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 |
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)
|
Uses of POS in net.sf.extjwnl.dictionary.file |
---|
Methods in net.sf.extjwnl.dictionary.file that return POS | |
---|---|
POS |
AbstractDictionaryFile.getPOS()
The POS associated with this file. |
POS |
DictionaryFile.getPOS()
Returns the POS associated with this file. |
Methods in net.sf.extjwnl.dictionary.file with parameters of type POS | |
---|---|
E |
DictionaryCatalog.get(POS pos)
|
E |
DictionaryCatalogSet.getDictionaryFile(POS pos,
DictionaryFileType fileType)
|
E |
DictionaryFileFactory.newInstance(Dictionary dictionary,
String path,
POS pos,
DictionaryFileType fileType)
Creates a new instance of the dictionary file. |
Constructors in net.sf.extjwnl.dictionary.file with parameters of type POS | |
---|---|
AbstractDictionaryFile(Dictionary dictionary,
String path,
POS pos,
DictionaryFileType fileType,
Map<String,Param> params)
|
Uses of POS in net.sf.extjwnl.dictionary.file_manager |
---|
Methods in net.sf.extjwnl.dictionary.file_manager with parameters of type POS | |
---|---|
RandomAccessDictionaryFile |
FileManagerImpl.getFile(POS pos,
DictionaryFileType fileType)
Returns the file from a part of speech and file type (ie data.noun). |
long |
FileManager.getFirstLinePointer(POS pos,
DictionaryFileType fileType)
Return the first valid line pointer in the specified file. |
long |
FileManagerImpl.getFirstLinePointer(POS pos,
DictionaryFileType fileType)
|
long |
FileManager.getIndexedLinePointer(POS pos,
DictionaryFileType fileType,
String index)
Search for the line whose first word is index (that is, that begins with index followed by a space or tab). |
long |
FileManagerImpl.getIndexedLinePointer(POS pos,
DictionaryFileType fileType,
String target)
Returns indexed line pointer is typically used to find a word within an index file matching a given part of speech. |
long |
FileManager.getMatchingLinePointer(POS pos,
DictionaryFileType fileType,
long offset,
String substring)
Search for a line whose index word contains substring, starting at offset. |
long |
FileManagerImpl.getMatchingLinePointer(POS pos,
DictionaryFileType fileType,
long offset,
String substring)
|
long |
FileManager.getNextLinePointer(POS pos,
DictionaryFileType fileType,
long offset)
Search for the line following the line that begins at offset. |
long |
FileManagerImpl.getNextLinePointer(POS pos,
DictionaryFileType fileType,
long offset)
|
long |
FileManager.getRandomLinePointer(POS pos,
DictionaryFileType fileType)
Return a randomly-chosen line pointer (offset of the beginning of a line). |
long |
FileManagerImpl.getRandomLinePointer(POS pos,
DictionaryFileType fileType)
|
String |
FileManager.readLineAt(POS pos,
DictionaryFileType fileType,
long offset)
Read the line that begins at file offset offset. |
String |
FileManagerImpl.readLineAt(POS pos,
DictionaryFileType fileType,
long offset)
|
Uses of POS in net.sf.extjwnl.dictionary.morph |
---|
Methods in net.sf.extjwnl.dictionary.morph that return types with arguments of type POS | |
---|---|
Map<POS,String[][]> |
DetachSuffixesOperation.getSuffixMap()
|
Methods in net.sf.extjwnl.dictionary.morph with parameters of type POS | |
---|---|
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 |
RemovePrepPhrasesOperation.execute(POS pos,
String lemma,
BaseFormSet baseForm)
|
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. |
Method parameters in net.sf.extjwnl.dictionary.morph with type arguments of type POS | |
---|---|
void |
DetachSuffixesOperation.setSuffixMap(Map<POS,String[][]> suffixMap)
|
Uses of POS in net.sf.extjwnl.princeton.data |
---|
Methods in net.sf.extjwnl.princeton.data with parameters of type POS | |
---|---|
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)
|
Uses of POS in net.sf.extjwnl.princeton.file |
---|
Methods in net.sf.extjwnl.princeton.file with parameters of type POS | |
---|---|
PrincetonRandomAccessDictionaryFile |
PrincetonRandomAccessDictionaryFile.newInstance(Dictionary dictionary,
String path,
POS pos,
DictionaryFileType fileType)
|
PrincetonObjectDictionaryFile |
PrincetonObjectDictionaryFile.newInstance(Dictionary dictionary,
String path,
POS pos,
DictionaryFileType fileType)
|
PrincetonChannelDictionaryFile |
PrincetonChannelDictionaryFile.newInstance(Dictionary dictionary,
String path,
POS pos,
DictionaryFileType fileType)
|
Constructors in net.sf.extjwnl.princeton.file with parameters of type POS | |
---|---|
AbstractPrincetonDictionaryFile(Dictionary dictionary,
String path,
POS pos,
DictionaryFileType fileType,
Map<String,Param> params)
|
|
AbstractPrincetonRandomAccessDictionaryFile(Dictionary dictionary,
String path,
POS pos,
DictionaryFileType fileType,
Map<String,Param> params)
|
|
PrincetonChannelDictionaryFile(Dictionary dictionary,
String path,
POS pos,
DictionaryFileType fileType,
Map<String,Param> params)
|
|
PrincetonObjectDictionaryFile(Dictionary dictionary,
String path,
POS pos,
DictionaryFileType fileType,
Map<String,Param> params)
|
|
PrincetonRandomAccessDictionaryFile(Dictionary dictionary,
String path,
POS pos,
DictionaryFileType fileType,
Map<String,Param> params)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |