|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use POS | |
---|---|
net.didion.jwnl.data | Classes for extracting and containing data from the dictionary. |
net.didion.jwnl.dictionary | Classes for acessing dictionary information. |
net.didion.jwnl.dictionary.database | Classes for accessing databases that contain dictionary information. |
net.didion.jwnl.dictionary.file | Classes for accessing files that contain dictionary information. |
net.didion.jwnl.dictionary.file_manager | Classes used by FileBackedDictionary to interface with the filesystem. |
net.didion.jwnl.dictionary.morph | |
net.didion.jwnl.princeton.data | Implementations of DictionaryElementFactory for Princeton's release of WordNet. |
net.didion.jwnl.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.didion.jwnl.data |
---|
Fields in net.didion.jwnl.data declared as POS | |
---|---|
static POS |
POS.ADJECTIVE
|
static POS |
POS.ADVERB
|
static POS |
POS.NOUN
|
static POS |
POS.VERB
|
Methods in net.didion.jwnl.data that return POS | |
---|---|
POS |
Word.getPOS()
Gets the part of speech of this word. |
POS |
Synset.getPOS()
|
abstract POS |
PointerTarget.getPOS()
Return this target's POS |
POS |
IndexWord.getPOS()
Get the word's part-of-speech. |
POS |
Exc.getPOS()
Gets the part of speech. |
static POS |
POS.getPOSForKey(java.lang.String key)
Return the POS whose key matches key,
or null if the key does not match any POS. |
static POS |
POS.getPOSForLabel(java.lang.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.didion.jwnl.data with parameters of type POS | |
---|---|
boolean |
PointerType.appliesTo(POS pos)
Whether or not this PointerType can be associated with pos |
Exc |
FileDictionaryElementFactory.createExc(POS pos,
java.lang.String line)
Create an Exc from a line in an exception file. |
Exc |
DatabaseDictionaryElementFactory.createExc(POS pos,
java.lang.String derivation,
java.sql.ResultSet rs)
Create an Exc from a row in the database. |
IndexWord |
FileDictionaryElementFactory.createIndexWord(POS pos,
java.lang.String line)
Creates an IndexWord from a line in an index file. |
IndexWord |
DatabaseDictionaryElementFactory.createIndexWord(POS pos,
java.lang.String lemma,
java.sql.ResultSet rs)
Create an IndexWord from a row in the database. |
Synset |
DatabaseDictionaryElementFactory.createSynset(POS pos,
long offset,
java.sql.ResultSet synset,
java.sql.ResultSet words,
java.sql.ResultSet pointers,
java.sql.ResultSet verbFrames)
Create a Synset from a row in the database. |
Synset |
FileDictionaryElementFactory.createSynset(POS pos,
java.lang.String line)
Creates a synset from a line in a data file. |
static java.util.List |
PointerType.getAllPointerTypesForPOS(POS pos)
|
IndexWord |
IndexWordSet.getIndexWord(POS p)
Get the IndexWord associated with p . |
int |
IndexWordSet.getSenseCount(POS pos)
Find 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)
Remove the IndexWord associated with p from this set. |
Constructors in net.didion.jwnl.data with parameters of type POS | |
---|---|
Exc(POS pos,
java.lang.String lemma,
java.util.List exceptions)
Creates a new exception entry. |
|
IndexWord(java.lang.String lemma,
POS pos,
long[] synsetOffsets)
|
|
Pointer(PointerTarget source,
int index,
PointerType pointerType,
POS targetPOS,
long targetOffset,
int targetIndex)
|
|
Synset(POS pos,
long offset,
Word[] words,
Pointer[] pointers,
java.lang.String gloss,
java.util.BitSet verbFrames)
|
|
Synset(POS pos,
long offset,
Word[] words,
Pointer[] pointers,
java.lang.String gloss,
java.util.BitSet verbFrames,
boolean isAdjectiveCluster)
Deprecated. |
|
SynsetProxy(POS pos)
The only value that matters is pos, since the call to getPOS is not forwarded to _source |
Uses of POS in net.didion.jwnl.dictionary |
---|
Methods in net.didion.jwnl.dictionary that return POS | |
---|---|
POS |
POSKey.getPOS()
|
Methods in net.didion.jwnl.dictionary with parameters of type POS | |
---|---|
Exc |
MapBackedDictionary.getException(POS pos,
java.lang.String derivation)
|
Exc |
FileBackedDictionary.getException(POS pos,
java.lang.String derivation)
|
abstract Exc |
Dictionary.getException(POS pos,
java.lang.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,
java.lang.String derivation)
|
java.util.Iterator |
MapBackedDictionary.getExceptionIterator(POS pos)
|
java.util.Iterator |
FileBackedDictionary.getExceptionIterator(POS pos)
|
abstract java.util.Iterator |
Dictionary.getExceptionIterator(POS pos)
Return an Iterator over all the Exceptions in the database. |
java.util.Iterator |
DatabaseBackedDictionary.getExceptionIterator(POS pos)
|
IndexWord |
MapBackedDictionary.getIndexWord(POS pos,
java.lang.String lemma)
|
IndexWord |
FileBackedDictionary.getIndexWord(POS pos,
java.lang.String lemma)
|
abstract IndexWord |
Dictionary.getIndexWord(POS pos,
java.lang.String lemma)
Look up a word in the database. |
IndexWord |
DatabaseBackedDictionary.getIndexWord(POS pos,
java.lang.String lemma)
|
java.util.Iterator |
MapBackedDictionary.getIndexWordIterator(POS pos)
|
java.util.Iterator |
FileBackedDictionary.getIndexWordIterator(POS pos)
|
abstract java.util.Iterator |
Dictionary.getIndexWordIterator(POS pos)
Return an Iterator over all the IndexWords of part-of-speech pos in the database. |
java.util.Iterator |
DatabaseBackedDictionary.getIndexWordIterator(POS pos)
|
java.util.Iterator |
MapBackedDictionary.getIndexWordIterator(POS pos,
java.lang.String substring)
|
java.util.Iterator |
FileBackedDictionary.getIndexWordIterator(POS pos,
java.lang.String substring)
|
abstract java.util.Iterator |
Dictionary.getIndexWordIterator(POS pos,
java.lang.String substring)
Return an Iterator over all the IndexWords of part-of-speech pos whose lemmas contain substring as a substring. |
java.util.Iterator |
DatabaseBackedDictionary.getIndexWordIterator(POS pos,
java.lang.String substring)
|
IndexWord |
MapBackedDictionary.getRandomIndexWord(POS pos)
|
IndexWord |
FileBackedDictionary.getRandomIndexWord(POS pos)
|
abstract IndexWord |
Dictionary.getRandomIndexWord(POS pos)
|
IndexWord |
DatabaseBackedDictionary.getRandomIndexWord(POS pos)
|
Synset |
MapBackedDictionary.getSynsetAt(POS pos,
long offset)
|
Synset |
FileBackedDictionary.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)
|
java.util.Iterator |
MapBackedDictionary.getSynsetIterator(POS pos)
|
java.util.Iterator |
FileBackedDictionary.getSynsetIterator(POS pos)
|
abstract java.util.Iterator |
Dictionary.getSynsetIterator(POS pos)
Return an Iterator over all the Synsets of part-of-speech pos in the database. |
java.util.Iterator |
DatabaseBackedDictionary.getSynsetIterator(POS pos)
|
java.util.List |
MorphologicalProcessor.lookupAllBaseForms(POS pos,
java.lang.String derivation)
Return all the base forms of derivation |
IndexWord |
MorphologicalProcessor.lookupBaseForm(POS pos,
java.lang.String derivation)
Try to turn derivation into a word that is found in the index file for pos. |
IndexWord |
Dictionary.lookupIndexWord(POS pos,
java.lang.String lemma)
Main word lookup procedure. |
Constructors in net.didion.jwnl.dictionary with parameters of type POS | |
---|---|
POSKey(POS pos,
long offset)
|
|
POSKey(POS pos,
java.lang.String lemma)
|
Uses of POS in net.didion.jwnl.dictionary.database |
---|
Methods in net.didion.jwnl.dictionary.database with parameters of type POS | |
---|---|
Query |
DatabaseManagerImpl.getExceptionQuery(POS pos,
java.lang.String derivation)
|
Query |
DatabaseManager.getExceptionQuery(POS pos,
java.lang.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,
java.lang.String substring)
|
Query |
DatabaseManager.getIndexWordLemmasQuery(POS pos,
java.lang.String substring)
|
Query |
DatabaseManagerImpl.getIndexWordSynsetsQuery(POS pos,
java.lang.String lemma)
|
Query |
DatabaseManager.getIndexWordSynsetsQuery(POS pos,
java.lang.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 |
SenseAndUsageDatabaseManager.getSynsetWordQuery(POS pos,
long offset)
|
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.didion.jwnl.dictionary.file |
---|
Methods in net.didion.jwnl.dictionary.file that return POS | |
---|---|
POS |
DictionaryFile.getPOS()
The POS associated with this file. |
POS |
AbstractDictionaryFile.getPOS()
The POS associated with this file. |
Methods in net.didion.jwnl.dictionary.file with parameters of type POS | |
---|---|
DictionaryFile |
DictionaryCatalog.get(POS pos)
|
DictionaryFile |
DictionaryCatalogSet.getDictionaryFile(POS pos,
DictionaryFileType fileType)
|
DictionaryFile |
DictionaryFile.newInstance(java.lang.String path,
POS pos,
DictionaryFileType fileType)
Create a new instance of the dictionary file |
Uses of POS in net.didion.jwnl.dictionary.file_manager |
---|
Methods in net.didion.jwnl.dictionary.file_manager with parameters of type POS | |
---|---|
DictionaryFile |
FileManagerImpl.getFile(POS pos,
DictionaryFileType fileType)
Gets the file from a part of speech and file type (ie data.noun). |
long |
FileManagerImpl.getFirstLinePointer(POS pos,
DictionaryFileType fileType)
Return the first valid line pointer in the specified file. |
long |
FileManager.getFirstLinePointer(POS pos,
DictionaryFileType fileType)
Return the first valid line pointer in the specified file. |
long |
FileManagerImpl.getIndexedLinePointer(POS pos,
DictionaryFileType fileType,
java.lang.String target)
Get indexed line pointer is typically used to find a word within an index file matching a given part of speech. |
long |
FileManager.getIndexedLinePointer(POS pos,
DictionaryFileType fileType,
java.lang.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.getMatchingLinePointer(POS pos,
DictionaryFileType fileType,
long offset,
java.lang.String substring)
Search for a line whose index word contains substring, starting at offset. |
long |
FileManager.getMatchingLinePointer(POS pos,
DictionaryFileType fileType,
long offset,
java.lang.String substring)
Search for a line whose index word contains substring, starting at offset. |
long |
FileManagerImpl.getNextLinePointer(POS pos,
DictionaryFileType fileType,
long offset)
Search for the line following the line that begins at offset. |
long |
FileManager.getNextLinePointer(POS pos,
DictionaryFileType fileType,
long offset)
Search for the line following the line that begins at offset. |
long |
FileManagerImpl.getRandomLinePointer(POS pos,
DictionaryFileType fileType)
Return a randomly-chosen line pointer (offset of the beginning of a line). |
long |
FileManager.getRandomLinePointer(POS pos,
DictionaryFileType index)
Return a randomly-chosen line pointer (offset of the beginning of a line). |
java.lang.String |
FileManagerImpl.readLineAt(POS pos,
DictionaryFileType fileType,
long offset)
Read the line that begins at file offset offset. |
java.lang.String |
FileManager.readLineAt(POS pos,
DictionaryFileType fileType,
long offset)
Read the line that begins at file offset offset. |
Uses of POS in net.didion.jwnl.dictionary.morph |
---|
Methods in net.didion.jwnl.dictionary.morph with parameters of type POS | |
---|---|
boolean |
TokenizerOperation.execute(POS pos,
java.lang.String lemma,
BaseFormSet forms)
|
boolean |
RemovePrepPhrasesOperation.execute(POS pos,
java.lang.String lemma,
BaseFormSet baseForm)
|
boolean |
Operation.execute(POS pos,
java.lang.String lemma,
BaseFormSet baseForms)
Execute the operation. |
boolean |
LookupIndexWordOperation.execute(POS pos,
java.lang.String lemma,
BaseFormSet baseForms)
|
boolean |
LookupExceptionsOperation.execute(POS pos,
java.lang.String derivation,
BaseFormSet form)
|
boolean |
DetachSuffixesOperation.execute(POS pos,
java.lang.String derivation,
BaseFormSet forms)
|
java.util.List |
DefaultMorphologicalProcessor.lookupAllBaseForms(POS pos,
java.lang.String derivation)
|
IndexWord |
DefaultMorphologicalProcessor.lookupBaseForm(POS pos,
java.lang.String derivation)
Lookup the base form of a word. |
Uses of POS in net.didion.jwnl.princeton.data |
---|
Methods in net.didion.jwnl.princeton.data with parameters of type POS | |
---|---|
Exc |
AbstractPrincetonFileDictionaryElementFactory.createExc(POS pos,
java.lang.String line)
|
Exc |
AbstractPrincetonDatabaseDictionaryElementFactory.createExc(POS pos,
java.lang.String derivation,
java.sql.ResultSet rs)
|
IndexWord |
AbstractPrincetonFileDictionaryElementFactory.createIndexWord(POS pos,
java.lang.String line)
|
IndexWord |
AbstractPrincetonDatabaseDictionaryElementFactory.createIndexWord(POS pos,
java.lang.String lemma,
java.sql.ResultSet rs)
|
Synset |
PrincetonWN30DatabaseDictionaryElementFactory.createSynset(POS pos,
long offset,
java.sql.ResultSet synset,
java.sql.ResultSet words,
java.sql.ResultSet pointers,
java.sql.ResultSet verbFrames)
Create a synset. |
Synset |
AbstractPrincetonDatabaseDictionaryElementFactory.createSynset(POS pos,
long offset,
java.sql.ResultSet synset,
java.sql.ResultSet words,
java.sql.ResultSet pointers,
java.sql.ResultSet verbFrames)
|
Synset |
AbstractPrincetonFileDictionaryElementFactory.createSynset(POS pos,
java.lang.String line)
|
Uses of POS in net.didion.jwnl.princeton.file |
---|
Methods in net.didion.jwnl.princeton.file with parameters of type POS | |
---|---|
DictionaryFile |
PrincetonRandomAccessDictionaryFile.newInstance(java.lang.String path,
POS pos,
DictionaryFileType fileType)
|
DictionaryFile |
PrincetonObjectDictionaryFile.newInstance(java.lang.String path,
POS pos,
DictionaryFileType fileType)
|
DictionaryFile |
PrincetonChannelDictionaryFile.newInstance(java.lang.String path,
POS pos,
DictionaryFileType fileType)
|
Constructors in net.didion.jwnl.princeton.file with parameters of type POS | |
---|---|
AbstractPrincetonDictionaryFile(java.lang.String path,
POS pos,
DictionaryFileType fileType)
|
|
PrincetonChannelDictionaryFile(java.lang.String path,
POS pos,
DictionaryFileType fileType)
|
|
PrincetonObjectDictionaryFile(java.lang.String path,
POS pos,
DictionaryFileType fileType)
|
|
PrincetonRandomAccessDictionaryFile(java.lang.String path,
POS pos,
DictionaryFileType fileType)
|
|
PrincetonRandomAccessDictionaryFile(java.lang.String path,
POS pos,
DictionaryFileType fileType,
java.lang.String permissions)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |