Class CoordinationToken
- java.lang.Object
-
- de.julielab.jcore.ae.coordbaseline.types.CoordinationToken
-
public class CoordinationToken extends Object
- Author:
- lichtenwald This class encapsulates the data that belong to the token (like the word or the appropriate pos tag) and the methods which modify these data.
-
-
Constructor Summary
Constructors Constructor Description CoordinationToken()CoordinationToken(String word, String posTag, String entityLabel, String EEELabel, String coordinationLabel)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetCoordinationLabel()StringgetEEELabel()StringgetEntityLabel()StringgetPosTag()StringgetWord()voidsetCoordinationLabel(String coordinationLabel)voidsetEEELabel(String EEELabel)voidsetEntityLabel(String entityLabel)voidsetPosTag(String posTag)voidsetWord(String word)StringtoString()This method is used to output the components of the Token to a String
-
-
-
Method Detail
-
getWord
public String getWord()
-
getPosTag
public String getPosTag()
-
getCoordinationLabel
public String getCoordinationLabel()
-
getEntityLabel
public String getEntityLabel()
-
getEEELabel
public String getEEELabel()
-
setWord
public void setWord(String word)
-
setPosTag
public void setPosTag(String posTag)
-
setCoordinationLabel
public void setCoordinationLabel(String coordinationLabel)
-
setEntityLabel
public void setEntityLabel(String entityLabel)
-
setEEELabel
public void setEEELabel(String EEELabel)
-
-