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 theRowWriterProcessor
provided byCommonWriterSettings.getRowWriterProcessor()
, and writes them.<T extends Record>
java.lang.StringAbstractWriter. processRecordToString(T record)
Processes the data given for an individual record with theRowWriterProcessor
provided 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 Record
AbstractParser. parseNextRecord()
Parses the next record from the input.Record
AbstractParser. parseRecord(java.lang.String line)
Parses a single line from a String in the format supported by the parser implementation.Record
Context. toRecord(java.lang.String[] row)
Converts the given parsed row to aRecord
Record
ContextWrapper. toRecord(java.lang.String[] row)
Record
DefaultContext. toRecord(java.lang.String[] row)
Record
NoopParsingContext. toRecord(java.lang.String[] row)
Record
ParsingContextWrapper. 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 anIterableResult
for iterating records parsed from the input.IterableResult<Record,ParsingContext>
AbstractParser. iterateRecords(java.io.File input, java.lang.String encoding)
Provides anIterableResult
for iterating records parsed from the input.IterableResult<Record,ParsingContext>
AbstractParser. iterateRecords(java.io.File input, java.nio.charset.Charset encoding)
Provides anIterableResult
for iterating records parsed from the input.IterableResult<Record,ParsingContext>
AbstractParser. iterateRecords(java.io.InputStream input)
Provides anIterableResult
for iterating records parsed from the input.IterableResult<Record,ParsingContext>
AbstractParser. iterateRecords(java.io.InputStream input, java.lang.String encoding)
Provides anIterableResult
for iterating records parsed from the input.IterableResult<Record,ParsingContext>
AbstractParser. iterateRecords(java.io.InputStream input, java.nio.charset.Charset encoding)
Provides anIterableResult
for iterating records parsed from the input.IterableResult<Record,ParsingContext>
AbstractParser. iterateRecords(java.io.Reader input)
Provides anIterableResult
for iterating records parsed from the input.java.util.List<Record>
AbstractParser. parseAllRecords()
Parses all remainingRecord
s from the input and returns them in a list.java.util.List<Record>
AbstractParser. parseAllRecords(int expectedRowCount)
Parses all remainingRecord
s 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 theRowWriterProcessor
provided 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)
void
AbstractWriter. writeRecords(java.util.Collection<? extends Record> rows)
Iterates over all records and writes them to the output.void
AbstractWriter. writeRecordsAndClose(java.util.Collection<? extends Record> allRows)
Iterates over all records, writes them and closes the output.<K> void
AbstractWriter. 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 aList
ofString
. -
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 Record
RecordIterator. 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 class
AbstractRecordFactory<R extends Record,M extends RecordMetaData>
An abstract factory class which allows subclasses to provide implementations ofRecord
Classes in com.univocity.parsers.common.record that implement Record Modifier and Type Class Description (package private) class
RecordImpl<C extends Context>
Methods in com.univocity.parsers.common.record that return Record Modifier and Type Method Description Record
RecordFactory. newRecord(java.lang.String[] data)
Creates a newRecord
with a row parsed from the input
-