Uses of Class
de.tudarmstadt.ukp.jwktl.api.PartOfSpeech

Packages that use PartOfSpeech
de.tudarmstadt.ukp.jwktl.api   
de.tudarmstadt.ukp.jwktl.api.entry   
de.tudarmstadt.ukp.jwktl.api.filter   
de.tudarmstadt.ukp.jwktl.parser.de.components   
de.tudarmstadt.ukp.jwktl.parser.en.components   
de.tudarmstadt.ukp.jwktl.parser.entry   
de.tudarmstadt.ukp.jwktl.parser.ru   
de.tudarmstadt.ukp.jwktl.parser.util   
de.tudarmstadt.ukp.jwktl.parser.wikisaurus   
 

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

Methods in de.tudarmstadt.ukp.jwktl.api that return PartOfSpeech
static PartOfSpeech PartOfSpeech.findByName(String name)
          Find the part of speech with the given name.
static PartOfSpeech PartOfSpeech.findByName(String name, Map<String,PartOfSpeech> additionalMap)
          Find the part of speech with the given name.
 PartOfSpeech IWiktionaryEntry.getPartOfSpeech()
          Returns the first part of speech tag encoded for this lexical entry.
static PartOfSpeech PartOfSpeech.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PartOfSpeech[] PartOfSpeech.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in de.tudarmstadt.ukp.jwktl.api that return types with arguments of type PartOfSpeech
 List<PartOfSpeech> IWiktionaryEntry.getPartsOfSpeech()
          Returns all part of speech tags encoded for this lexical entry.
 

Methods in de.tudarmstadt.ukp.jwktl.api with parameters of type PartOfSpeech
static boolean PartOfSpeech.equals(PartOfSpeech partOfSpeech1, PartOfSpeech partOfSpeech2)
          Tests if the specified parts of speech are equal.
 

Method parameters in de.tudarmstadt.ukp.jwktl.api with type arguments of type PartOfSpeech
static PartOfSpeech PartOfSpeech.findByName(String name, Map<String,PartOfSpeech> additionalMap)
          Find the part of speech with the given name.
 

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

Fields in de.tudarmstadt.ukp.jwktl.api.entry with type parameters of type PartOfSpeech
protected  List<PartOfSpeech> WiktionaryEntry.partsOfSpeech
           
 

Methods in de.tudarmstadt.ukp.jwktl.api.entry that return PartOfSpeech
 PartOfSpeech WiktionaryEntry.getPartOfSpeech()
           
 

Methods in de.tudarmstadt.ukp.jwktl.api.entry that return types with arguments of type PartOfSpeech
 List<PartOfSpeech> WiktionaryEntry.getPartsOfSpeech()
           
 

Methods in de.tudarmstadt.ukp.jwktl.api.entry with parameters of type PartOfSpeech
 void WiktionaryEntry.addPartOfSpeech(PartOfSpeech partOfSpeech)
          Adds the given part of speech to the list of part of speech tags.
 

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

Fields in de.tudarmstadt.ukp.jwktl.api.filter with type parameters of type PartOfSpeech
protected  Set<PartOfSpeech> WiktionaryEntryFilter.allowedPartsOfSpeech
           
 

Methods in de.tudarmstadt.ukp.jwktl.api.filter that return types with arguments of type PartOfSpeech
 Iterable<PartOfSpeech> WiktionaryEntryFilter.getAllowedPartsOfSpeech()
          Return an iterable of the list of all allowed parts of speech.
 

Methods in de.tudarmstadt.ukp.jwktl.api.filter with parameters of type PartOfSpeech
 void WiktionaryEntryFilter.setAllowedPartsOfSpeech(PartOfSpeech... allowedPartsOfSpeech)
          Define the set of parts of speech which are allowed for a IWiktionaryEntry.
 

Method parameters in de.tudarmstadt.ukp.jwktl.api.filter with type arguments of type PartOfSpeech
 void WiktionaryEntryFilter.setAllowedPartsOfSpeech(Collection<PartOfSpeech> allowedPartsOfSpeech)
          Define the set of parts of speech which are allowed for a IWiktionaryEntry.
 

Constructor parameters in de.tudarmstadt.ukp.jwktl.api.filter with type arguments of type PartOfSpeech
WiktionaryEntryFilter(Set<ILanguage> allowedEntryLanguages, Set<ILanguage> allowedWordLanguages, Set<PartOfSpeech> allowedPartsOfSpeech)
          Shorthand for setting the allowed entry language, word language, and parts of speech.
 

Uses of PartOfSpeech in de.tudarmstadt.ukp.jwktl.parser.de.components
 

Fields in de.tudarmstadt.ukp.jwktl.parser.de.components with type parameters of type PartOfSpeech
protected  List<PartOfSpeech> DEPartOfSpeechHandler.posList
           
protected static Map<String,PartOfSpeech> DEEntryFactory.posMap
           
 

Methods in de.tudarmstadt.ukp.jwktl.parser.de.components that return PartOfSpeech
 PartOfSpeech DEEntryFactory.findPartOfSpeech(String name)
           
 

Uses of PartOfSpeech in de.tudarmstadt.ukp.jwktl.parser.en.components
 

Fields in de.tudarmstadt.ukp.jwktl.parser.en.components declared as PartOfSpeech
protected  PartOfSpeech ENSenseHandler.partOfSpeech
          Extracted pos string
 

Fields in de.tudarmstadt.ukp.jwktl.parser.en.components with type parameters of type PartOfSpeech
protected static Map<String,PartOfSpeech> ENEntryFactory.posMap
           
 

Methods in de.tudarmstadt.ukp.jwktl.parser.en.components that return PartOfSpeech
 PartOfSpeech ENEntryFactory.findPartOfSpeech(String name)
           
 

Uses of PartOfSpeech in de.tudarmstadt.ukp.jwktl.parser.entry
 

Methods in de.tudarmstadt.ukp.jwktl.parser.entry that return PartOfSpeech
abstract  PartOfSpeech EntryFactory.findPartOfSpeech(String name)
          Converts the given string into a part of speech enum type.
 

Uses of PartOfSpeech in de.tudarmstadt.ukp.jwktl.parser.ru
 

Methods in de.tudarmstadt.ukp.jwktl.parser.ru that return PartOfSpeech
 PartOfSpeech WikokitToJWKTL.convertPOS(POS wikoPos)
          Converts a Wikokit part of speech to JWKTL.
 

Uses of PartOfSpeech in de.tudarmstadt.ukp.jwktl.parser.util
 

Fields in de.tudarmstadt.ukp.jwktl.parser.util declared as PartOfSpeech
protected  PartOfSpeech ParsingContext.partOfSpeech
           
 

Methods in de.tudarmstadt.ukp.jwktl.parser.util that return PartOfSpeech
 PartOfSpeech ParsingContext.getPartOfSpeech()
          Returns the PartOfSpeech of the current IWiktionaryEntry.
 

Methods in de.tudarmstadt.ukp.jwktl.parser.util with parameters of type PartOfSpeech
 void ParsingContext.setPartOfSpeech(PartOfSpeech partOfSpeech)
          Save the specified part of speech in the context object.
 

Uses of PartOfSpeech in de.tudarmstadt.ukp.jwktl.parser.wikisaurus
 

Methods in de.tudarmstadt.ukp.jwktl.parser.wikisaurus that return PartOfSpeech
 PartOfSpeech WikisaurusEntry.getPartOfSpeech()
          Returns the part of speech tag.
 

Constructors in de.tudarmstadt.ukp.jwktl.parser.wikisaurus with parameters of type PartOfSpeech
WikisaurusEntry(String title, PartOfSpeech partOfSpeech, ILanguage language, String senseDefinition)
          Instanciates a new entry with the given title, part of speech, language, and sense definition (optional)
 



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