|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcsli.util.nlp.Lemmatiser
public abstract class Lemmatiser
An abstract lemmatiser.
| Constructor Summary | |
|---|---|
Lemmatiser()
|
|
| Method Summary | |
|---|---|
List<Lemma> |
getLemma(List<String> wordList)
Produce a list of lemmas (pairs of root form & part-of-speech) from a list of word strings. |
abstract Lemma |
getLemma(String wordString)
Produce a lemma (pair of root form & part-of-speech) from a word string. |
abstract String |
getWord(Lemma lemma)
Generate a morphological word string from a lemma (pair of root form & part-of-speech). |
List<String> |
getWord(List<Lemma> lemmaList)
Produce a list of morphological word strings from a list of lemmas (pairs of root form & part-of-speech). |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Lemmatiser()
| Method Detail |
|---|
public abstract Lemma getLemma(String wordString)
wordString - the word string to lemmatise
public List<Lemma> getLemma(List<String> wordList)
wordList - the list of word strings to lemmatise
public abstract String getWord(Lemma lemma)
lemma - the lemma from which to generate
public List<String> getWord(List<Lemma> lemmaList)
lemmaList - the list of lemmas from which to generate
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||