Class CSVRecord


  • public class CSVRecord
    extends Record
    This class is a specific implementation of a record for CSV. Every record corresponds with a row of the CSV data source.
    • Method Detail

      • getDataType

        public String getDataType​(String value)
        This method returns the datatype of a reference in the record.
        Overrides:
        getDataType in class Record
        Parameters:
        value - the reference for which the datatype needs to be returned.
        Returns:
        the IRI of the datatype.
      • get

        public List<Object> get​(String value)
        This method returns the objects for a column in the CSV record (= CSV row).
        Specified by:
        get in class Record
        Parameters:
        value - the column for which objects need to be returned.
        Returns:
        a list of objects for the column.