Class TableRow


  • public class TableRow
    extends Object
    A row in a table in a data source. A row is a tuple whose each field matches a given column of the requested table. Hence the field name in the row is the column name and its value the value in the column.
    Author:
    mmoquillon
    • Method Detail

      • getFieldNames

        public List<String> getFieldNames()
        Gets the name of all the fields in this table row.
        Returns:
        a list with the name of all of the fields in this table row.
      • getFields

        public Map<String,​Object> getFields()
        Gets all the fields of this table row.
        Returns:
        a Map between a field name and its value.
      • getFieldValue

        public Comparable getFieldValue​(String field)
        Gets the value of the specified field in this table row.
        Parameters:
        field - the name of the field.
        Returns:
        the value of the asked field.