Package | Description |
---|---|
com.univocity.parsers.common | |
com.univocity.parsers.common.iterators | |
com.univocity.parsers.common.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.
|
Modifier and Type | Method | Description |
---|---|---|
IterableResult<Record,ParsingContext> |
AbstractParser.iterateRecords(java.io.File input) |
Provides an
IterableResult for iterating records parsed from the input. |
IterableResult<Record,ParsingContext> |
AbstractParser.iterateRecords(java.io.File input,
java.lang.String encoding) |
Provides an
IterableResult for iterating records parsed from the input. |
IterableResult<Record,ParsingContext> |
AbstractParser.iterateRecords(java.io.File input,
java.nio.charset.Charset encoding) |
Provides an
IterableResult for iterating records parsed from the input. |
IterableResult<Record,ParsingContext> |
AbstractParser.iterateRecords(java.io.InputStream input) |
Provides an
IterableResult for iterating records parsed from the input. |
IterableResult<Record,ParsingContext> |
AbstractParser.iterateRecords(java.io.InputStream input,
java.lang.String encoding) |
Provides an
IterableResult for iterating records parsed from the input. |
IterableResult<Record,ParsingContext> |
AbstractParser.iterateRecords(java.io.InputStream input,
java.nio.charset.Charset encoding) |
Provides an
IterableResult for iterating records parsed from the input. |
IterableResult<Record,ParsingContext> |
AbstractParser.iterateRecords(java.io.Reader input) |
Provides an
IterableResult for iterating records parsed from the input. |
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,
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.nio.charset.Charset encoding) |
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,
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.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.Reader reader) |
Parses all records from the input and returns them in a list.
|
Modifier and Type | Method | Description |
---|---|---|
protected Record |
RecordIterator.nextResult() |
Modifier and Type | Class | Description |
---|---|---|
class |
AbstractRecordFactory<R extends Record,M extends RecordMetaData> |
An abstract factory class which allows subclasses to provide implementations of
Record |
Modifier and Type | Method | Description |
---|---|---|
Record |
RecordFactory.newRecord(java.lang.String[] data) |
Creates a new
Record with a row parsed from the input |