Class TextDataContent
java.lang.Object
com.aquima.interactions.framework.util.textdata.TextDataContent
This class contains DSV data.
- Since:
- 6.3
- Author:
- Jon van Leuven
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected void
int
This method returns the number of colums.String[]
This method returns the headers of the dsv content.String[]
getRow
(int rowIndex) This method returns a specific row.int
This method returns the number of rows.getValue
(int row, int column) This method returns a value for a specific field in the data matrix.protected void
toString()
-
Constructor Details
-
Method Details
-
setHeader
-
addRow
-
getHeader
This method returns the headers of the dsv content. If not null then the size of the returned array is equal to the value specified by getColumnCount.- Returns:
- The headers of the dsv content (may be null if no header specified)
-
getRow
This method returns a specific row.- Parameters:
rowIndex
- The index of the row to retrieve- Returns:
- The row.
-
getColumnCount
public int getColumnCount()This method returns the number of colums.- Returns:
- The number of columns.
-
getRowCount
public int getRowCount()This method returns the number of rows.- Returns:
- The number of columns.
-
getValue
This method returns a value for a specific field in the data matrix.- Parameters:
row
- The row numbercolumn
- The column number- Returns:
- The value ( may be null )
-
toString
-