Package io.cucumber.messages.types
Class TableCell
- java.lang.Object
-
- io.cucumber.messages.types.TableCell
-
public class TableCell extends Object
A cell in a `TableRow`
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object other)LocationgetLocation()* Points to a line and a column in a text file (Required)StringgetValue()The value of the cell (Required)inthashCode()voidsetLocation(Location location)* Points to a line and a column in a text file (Required)voidsetValue(String value)The value of the cell (Required)StringtoString()
-
-
-
Method Detail
-
getLocation
public Location getLocation()
* Points to a line and a column in a text file (Required)
-
setLocation
public void setLocation(Location location)
* Points to a line and a column in a text file (Required)
-
getValue
public String getValue()
The value of the cell (Required)
-
setValue
public void setValue(String value)
The value of the cell (Required)
-
-