Class GenericCsvParser
java.lang.Object
io.deephaven.enterprise.niowrapper.csv.GenericCsvParser
- Direct Known Subclasses:
GenericInMemoryCsvParser
Created by IntelliJ IDEA. User: dkent Date: Jun 11, 2007 Time: 9:12:45 AM
Abstract interface for generic CSV parsers.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classstatic classRelevant values from a line of a CSV file. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets all of the labels for the columns loaded from the CSV file.listFromSet(Set<String> columnNames) abstract GenericCsvParser.CsvDataLinenext()Gets the next line of data from the CSV file.setFromList(List<String> columnNames)
-
Constructor Details
-
GenericCsvParser
public GenericCsvParser()
-
-
Method Details
-
next
Gets the next line of data from the CSV file.- Returns:
- next line of data from the CSV file.
- Throws:
IOException- problem loading the data.
-
getColumnNames
Gets all of the labels for the columns loaded from the CSV file.- Returns:
- all of the labels for the columns loaded from the CSV file.
-
setFromList
-
listFromSet
-