Uses of Class
tech.tablesaw.io.ReadOptions
-
-
Uses of ReadOptions in tech.tablesaw.api
Methods in tech.tablesaw.api with parameters of type ReadOptions Modifier and Type Method Description AbstractColumnParser<?>
ColumnType. customParser(ReadOptions options)
TODO: Research this method to provide a good comment -
Uses of ReadOptions in tech.tablesaw.columns
Methods in tech.tablesaw.columns with parameters of type ReadOptions Modifier and Type Method Description AbstractColumnParser<?>
SkipColumnType. customParser(ReadOptions options)
TODO: Research this method to provide a good comment -
Uses of ReadOptions in tech.tablesaw.columns.booleans
Methods in tech.tablesaw.columns.booleans with parameters of type ReadOptions Modifier and Type Method Description BooleanParser
BooleanColumnType. customParser(ReadOptions readOptions)
Constructors in tech.tablesaw.columns.booleans with parameters of type ReadOptions Constructor Description BooleanParser(BooleanColumnType booleanColumnType, ReadOptions readOptions)
-
Uses of ReadOptions in tech.tablesaw.columns.dates
Methods in tech.tablesaw.columns.dates with parameters of type ReadOptions Modifier and Type Method Description AbstractColumnParser<LocalDate>
DateColumnType. customParser(ReadOptions options)
Constructors in tech.tablesaw.columns.dates with parameters of type ReadOptions Constructor Description DateParser(ColumnType type, ReadOptions readOptions)
-
Uses of ReadOptions in tech.tablesaw.columns.datetimes
Methods in tech.tablesaw.columns.datetimes with parameters of type ReadOptions Modifier and Type Method Description DateTimeParser
DateTimeColumnType. customParser(ReadOptions options)
Constructors in tech.tablesaw.columns.datetimes with parameters of type ReadOptions Constructor Description DateTimeParser(DateTimeColumnType dateTimeColumnType, ReadOptions readOptions)
-
Uses of ReadOptions in tech.tablesaw.columns.instant
Methods in tech.tablesaw.columns.instant with parameters of type ReadOptions Modifier and Type Method Description InstantParser
InstantColumnType. customParser(ReadOptions options)
-
Uses of ReadOptions in tech.tablesaw.columns.numbers
Methods in tech.tablesaw.columns.numbers with parameters of type ReadOptions Modifier and Type Method Description DoubleParser
DoubleColumnType. customParser(ReadOptions options)
TODO: Research this method to provide a good commentFloatParser
FloatColumnType. customParser(ReadOptions options)
TODO: Research this method to provide a good commentIntParser
IntColumnType. customParser(ReadOptions options)
TODO: Research this method to provide a good commentLongParser
LongColumnType. customParser(ReadOptions options)
TODO: Research this method to provide a good commentShortParser
ShortColumnType. customParser(ReadOptions options)
Constructors in tech.tablesaw.columns.numbers with parameters of type ReadOptions Constructor Description DoubleParser(DoubleColumnType doubleColumnType, ReadOptions readOptions)
FloatParser(FloatColumnType columnType, ReadOptions readOptions)
IntParser(IntColumnType columnType, ReadOptions readOptions)
LongParser(LongColumnType columnType, ReadOptions readOptions)
ShortParser(ShortColumnType columnType, ReadOptions readOptions)
-
Uses of ReadOptions in tech.tablesaw.columns.strings
Methods in tech.tablesaw.columns.strings with parameters of type ReadOptions Modifier and Type Method Description StringParser
StringColumnType. customParser(ReadOptions options)
Constructors in tech.tablesaw.columns.strings with parameters of type ReadOptions Constructor Description StringParser(ColumnType columnType, ReadOptions readOptions)
-
Uses of ReadOptions in tech.tablesaw.columns.times
Methods in tech.tablesaw.columns.times with parameters of type ReadOptions Modifier and Type Method Description AbstractColumnParser<LocalTime>
TimeColumnType. customParser(ReadOptions options)
Constructors in tech.tablesaw.columns.times with parameters of type ReadOptions Constructor Description TimeParser(ColumnType columnType, ReadOptions readOptions)
-
Uses of ReadOptions in tech.tablesaw.io
Classes in tech.tablesaw.io with type parameters of type ReadOptions Modifier and Type Interface Description interface
DataReader<O extends ReadOptions>
Methods in tech.tablesaw.io with type parameters of type ReadOptions Modifier and Type Method Description <T extends ReadOptions>
DataReader<T>ReaderRegistry. getReaderForOptions(T options)
<T extends ReadOptions>
TableDataFrameReader. usingOptions(T options)
Methods in tech.tablesaw.io that return ReadOptions Modifier and Type Method Description ReadOptions
ReadOptions.Builder. build()
Methods in tech.tablesaw.io with parameters of type ReadOptions Modifier and Type Method Description static Table
TableBuildingUtils. build(List<String> columnNames, List<String[]> dataRows, ReadOptions options)
ColumnType[]
ColumnTypeDetector. detectColumnTypes(Iterator<String[]> rows, ReadOptions options)
Estimates and returns the type for each column in the input textString[]
FileReader. getColumnNames(ReadOptions options, ReadOptions.ColumnTypeReadOptions columnTypeReadOptions, com.univocity.parsers.common.AbstractParser<?> parser)
Returns the column names for each column in the source.ColumnType[]
FileReader. getColumnTypes(Reader reader, ReadOptions options, int linesToSkip, com.univocity.parsers.common.AbstractParser<?> parser, String[] columnNames)
Returns an array containing the inferred columnTypes for the file being read, as calculated by the ColumnType inference logic.protected Table
FileReader. parseRows(ReadOptions options, boolean headerOnly, Reader reader, ReadOptions.ColumnTypeReadOptions columnTypeReadOptions, com.univocity.parsers.common.AbstractParser<?> parser)
protected Table
FileReader. parseRows(ReadOptions options, boolean headerOnly, Reader reader, ReadOptions.ColumnTypeReadOptions columnTypeReadOptions, com.univocity.parsers.common.AbstractParser<?> parser, int sampleSize)
Method parameters in tech.tablesaw.io with type arguments of type ReadOptions Modifier and Type Method Description void
ReaderRegistry. registerOptions(Class<? extends ReadOptions> optionsType, DataReader<?> reader)
-
Uses of ReadOptions in tech.tablesaw.io.csv
Subclasses of ReadOptions in tech.tablesaw.io.csv Modifier and Type Class Description class
CsvReadOptions
-
Uses of ReadOptions in tech.tablesaw.io.fixed
Subclasses of ReadOptions in tech.tablesaw.io.fixed Modifier and Type Class Description class
FixedWidthReadOptions
-