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 BooleanParserBooleanColumnType. 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 DateTimeParserDateTimeColumnType. 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 InstantParserInstantColumnType. 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 DoubleParserDoubleColumnType. customParser(ReadOptions options)TODO: Research this method to provide a good commentFloatParserFloatColumnType. customParser(ReadOptions options)TODO: Research this method to provide a good commentIntParserIntColumnType. customParser(ReadOptions options)TODO: Research this method to provide a good commentLongParserLongColumnType. customParser(ReadOptions options)TODO: Research this method to provide a good commentShortParserShortColumnType. 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 StringParserStringColumnType. 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 interfaceDataReader<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 ReadOptionsReadOptions.Builder. build()Methods in tech.tablesaw.io with parameters of type ReadOptions Modifier and Type Method Description static TableTableBuildingUtils. 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 TableFileReader. parseRows(ReadOptions options, boolean headerOnly, Reader reader, ReadOptions.ColumnTypeReadOptions columnTypeReadOptions, com.univocity.parsers.common.AbstractParser<?> parser)protected TableFileReader. 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 voidReaderRegistry. 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 classCsvReadOptions -
Uses of ReadOptions in tech.tablesaw.io.fixed
Subclasses of ReadOptions in tech.tablesaw.io.fixed Modifier and Type Class Description classFixedWidthReadOptions
-