Uses of Interface
com.univocity.parsers.common.record.Record
-
Packages that use Record Package Description com.univocity.parsers.common com.univocity.parsers.common.iterators com.univocity.parsers.common.record -
-
Uses of Record in com.univocity.parsers.common
Methods in com.univocity.parsers.common with type parameters of type Record Modifier and Type Method Description <T extends Record>
voidAbstractWriter. processRecord(T record)<T extends Record>
voidAbstractWriter. processRecords(T[] records)Iterates over all records, processes each one with theRowWriterProcessorprovided byCommonWriterSettings.getRowWriterProcessor(), and writes them.<T extends Record>
java.lang.StringAbstractWriter. processRecordToString(T record)Processes the data given for an individual record with theRowWriterProcessorprovided byCommonWriterSettings.getRowWriterProcessor(), then writes it to aString.<T extends Record>
voidAbstractWriter. writeRecord(T row)Writes the data given for an individual record.<T extends Record>
java.lang.StringAbstractWriter. writeRecordToString(T row)Writes the data given for an individual record to aString.Methods in com.univocity.parsers.common that return Record Modifier and Type Method Description RecordAbstractParser. parseNextRecord()Parses the next record from the input.RecordAbstractParser. parseRecord(java.lang.String line)Parses a single line from a String in the format supported by the parser implementation.RecordContext. toRecord(java.lang.String[] row)Converts the given parsed row to aRecordRecordContextWrapper. toRecord(java.lang.String[] row)RecordDefaultContext. toRecord(java.lang.String[] row)RecordNoopParsingContext. toRecord(java.lang.String[] row)RecordParsingContextWrapper. toRecord(java.lang.String[] row)Methods in com.univocity.parsers.common that return types with arguments of type Record Modifier and Type Method Description private java.util.List<Record>AbstractParser. internalParseAllRecords(boolean validateReader, java.io.Reader reader, int expectedRowCount)IterableResult<Record,ParsingContext>AbstractParser. iterateRecords(java.io.File input)Provides anIterableResultfor iterating records parsed from the input.IterableResult<Record,ParsingContext>AbstractParser. iterateRecords(java.io.File input, java.lang.String encoding)Provides anIterableResultfor iterating records parsed from the input.IterableResult<Record,ParsingContext>AbstractParser. iterateRecords(java.io.File input, java.nio.charset.Charset encoding)Provides anIterableResultfor iterating records parsed from the input.IterableResult<Record,ParsingContext>AbstractParser. iterateRecords(java.io.InputStream input)Provides anIterableResultfor iterating records parsed from the input.IterableResult<Record,ParsingContext>AbstractParser. iterateRecords(java.io.InputStream input, java.lang.String encoding)Provides anIterableResultfor iterating records parsed from the input.IterableResult<Record,ParsingContext>AbstractParser. iterateRecords(java.io.InputStream input, java.nio.charset.Charset encoding)Provides anIterableResultfor iterating records parsed from the input.IterableResult<Record,ParsingContext>AbstractParser. iterateRecords(java.io.Reader input)Provides anIterableResultfor iterating records parsed from the input.java.util.List<Record>AbstractParser. parseAllRecords()Parses all remainingRecords from the input and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(int expectedRowCount)Parses all remainingRecords from the input and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.File file)Parses all records from a file and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.File file, int expectedRowCount)Parses all records from a file and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.File file, java.lang.String encoding)Parses all records from a file and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.File file, java.lang.String encoding, int expectedRowCount)Parses all records from a file and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.File file, java.nio.charset.Charset encoding)Parses all records from a file and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.File file, java.nio.charset.Charset encoding, int expectedRowCount)Parses all records from a file and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.InputStream input)Parses all records from an input stream and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.InputStream input, int expectedRowCount)Parses all records from an input stream and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.InputStream input, java.lang.String encoding)Parses all records from an input stream and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.InputStream input, java.lang.String encoding, int expectedRowCount)Parses all records from an input stream and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.InputStream input, java.nio.charset.Charset encoding)Parses all records from an input stream and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.InputStream input, java.nio.charset.Charset encoding, int expectedRowCount)Parses all records from an input stream and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.Reader reader)Parses all records from the input and returns them in a list.java.util.List<Record>AbstractParser. parseAllRecords(java.io.Reader reader, int expectedRowCount)Parses all records from the input and returns them in a list.Methods in com.univocity.parsers.common with parameters of type Record Modifier and Type Method Description <T extends Record>
voidAbstractWriter. processRecords(T[] records)Iterates over all records, processes each one with theRowWriterProcessorprovided byCommonWriterSettings.getRowWriterProcessor(), and writes them.Method parameters in com.univocity.parsers.common with type arguments of type Record Modifier and Type Method Description private <K> java.util.Map<K,java.lang.Iterable<java.lang.String>>AbstractWriter. wrapRecordValues(java.util.Map<K,? extends Record> rowData)voidAbstractWriter. writeRecords(java.util.Collection<? extends Record> rows)Iterates over all records and writes them to the output.voidAbstractWriter. writeRecordsAndClose(java.util.Collection<? extends Record> allRows)Iterates over all records, writes them and closes the output.<K> voidAbstractWriter. writeRecordsAndClose(java.util.Map<K,? extends Record> rowData)Writes the values of a given map to multiple output records and closes the output when finished.java.util.List<java.lang.String>AbstractWriter. writeRecordsToString(java.util.Collection<? extends Record> rows)Iterates over all records and writes them to aListofString. -
Uses of Record in com.univocity.parsers.common.iterators
Methods in com.univocity.parsers.common.iterators that return Record Modifier and Type Method Description protected RecordRecordIterator. nextResult() -
Uses of Record in com.univocity.parsers.common.record
Classes in com.univocity.parsers.common.record with type parameters of type Record Modifier and Type Class Description classAbstractRecordFactory<R extends Record,M extends RecordMetaData>An abstract factory class which allows subclasses to provide implementations ofRecordClasses in com.univocity.parsers.common.record that implement Record Modifier and Type Class Description (package private) classRecordImpl<C extends Context>Methods in com.univocity.parsers.common.record that return Record Modifier and Type Method Description RecordRecordFactory. newRecord(java.lang.String[] data)Creates a newRecordwith a row parsed from the input
-