Package opennlp.tools.formats.conllu
Class ConlluWordLine
- java.lang.Object
-
- opennlp.tools.formats.conllu.ConlluWordLine
-
public class ConlluWordLine extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDeprel()Universal dependency relation to the HEAD (root iff HEAD = 0) or a defined language-specific subtype of one.StringgetDeps()Enhanced dependency graph in the form of a list of head-deprel pairs.StringgetFeats()Retrieve list of morphological features from the universal feature inventory or from a defined language-specific extension; underscore if not available.StringgetForm()Retrieve the word form or punctuation symbol.StringgetHead()Head of the current word, which is either a value of ID or zero (0).StringgetId()Retrieves the word index.StringgetLemma()Retrieve the lemma or stem of the word form.StringgetMisc()Retrieve any other annotation.StringgetPosTag(ConlluTagset tagset)Retrieve the Universal part-of-speech tag or the language-specific part-of-speech tag; underscore if not available.
-
-
-
Method Detail
-
getId
public String getId()
Retrieves the word index. An Integer starting at 1 for each new sentence; may be a range for multiword tokens; may be a decimal number for empty nodes.
-
getForm
public String getForm()
Retrieve the word form or punctuation symbol.
-
getLemma
public String getLemma()
Retrieve the lemma or stem of the word form.
-
getPosTag
public String getPosTag(ConlluTagset tagset)
Retrieve the Universal part-of-speech tag or the language-specific part-of-speech tag; underscore if not available.- Parameters:
tagset- the type of tag to retrieve, either universial (u) or language specific (x)
-
getFeats
public String getFeats()
Retrieve list of morphological features from the universal feature inventory or from a defined language-specific extension; underscore if not available.
-
getHead
public String getHead()
Head of the current word, which is either a value of ID or zero (0).
-
getDeprel
public String getDeprel()
Universal dependency relation to the HEAD (root iff HEAD = 0) or a defined language-specific subtype of one.
-
getDeps
public String getDeps()
Enhanced dependency graph in the form of a list of head-deprel pairs.
-
getMisc
public String getMisc()
Retrieve any other annotation.
-
-