Uses of Interface
jmrc.PoS

Uses of PoS in jmrc
 

Classes in jmrc that implement PoS
 class MRCPoS
          MRC part-of-speech tags.
 

Methods in jmrc that return types with arguments of type PoS
 java.util.Map<java.lang.String,java.util.Map<PoS,java.util.Map<Field,java.lang.Integer>>> LexicalDatabase.getMap()
          Returns the underlying mapping of the database.
 

Methods in jmrc with parameters of type PoS
 java.util.Comparator LexicalDatabase.getLexiconComparator(Field field, PoS pos)
          Returns a string comparator for based on the database values of a given field and for a given PoS tag.
 int LexicalDatabase.getValue(java.lang.String word, PoS pos, Field field)
          Returns an integer feature value from the database.
 int LexicalDatabase.getValue(java.lang.String word, PoS pos, java.lang.String field)
          Returns an integer feature value from the database.
 java.util.List<java.lang.String> LexicalDatabase.getWords(Field field, PoS pos, double min, double max)
          Returns all words in the database with values within the [min,max] interval specified (linear search).
 java.util.List<java.lang.String> LexicalDatabase.getWords(Field field, PoS pos, int inputValue)
          Returns all words in the database with the exact specified integer value (linear search).
 void LexicalDatabase.putValue(java.lang.String word, PoS pos, Field field, int value)
          Insert a value in the lexical database.