public class CsvFileredObservableList extends AbstractFilteredObservableList
mAllRows, mFilteredRows, mRowHeaders| Constructor and Description |
|---|
CsvFileredObservableList()
Create an empty table model (no rows, no columns).
|
CsvFileredObservableList(InputStream pCSVData,
boolean pFirstRowIsHeader,
String pCSVSeparator,
String pEncoding)
Create a new table model by parsing the input stream as CSV data.
|
CsvFileredObservableList(Reader pCSVData,
boolean pFirstRowIsHeader,
String pCSVSeparator)
Create a new table model by parsing the CSV data from the input reader.
|
add, add, addAll, addAll, addAll, addListener, addListener, clear, contains, containsAll, equals, filter, filterReset, get, getAllRowsCount, getColumnCount, getColumnName, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, remove, removeAll, removeAll, removeListener, removeListener, retainAll, retainAll, set, setAll, setAll, size, subList, toArray, toArrayclone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitreplaceAll, sort, spliteratorparallelStream, removeIf, streampublic CsvFileredObservableList()
public CsvFileredObservableList(InputStream pCSVData, boolean pFirstRowIsHeader, String pCSVSeparator, String pEncoding) throws IOException
pCSVData - the input we read our data from, may be nullpFirstRowIsHeader - true if the first row contains the headerpCSVSeparator - "comma" separator, may be null (then "," is taken)pEncoding - the encoding pf pCSVData, may be null if pCSVData is nullIOException - if we have IO problemspublic CsvFileredObservableList(Reader pCSVData, boolean pFirstRowIsHeader, String pCSVSeparator) throws IOException
pCSVData - the reader we read the CSV data from, may be nullpFirstRowIsHeader - true if the first row contains the headerpCSVSeparator - "comma" separator, may be nullIOException - if we have IO problemsCopyright © 2013–2024 Jürgen Zeller (privat). All rights reserved.