Uses of Interface
com.univocity.parsers.common.IterableResult
Packages that use IterableResult
Package
Description
-
Uses of IterableResult in com.univocity.parsers.common
Methods in com.univocity.parsers.common that return IterableResultModifier and TypeMethodDescriptionfinal IterableResult<String[],
ParsingContext> Provides anIterableResult
for iterating rows parsed from the input.final IterableResult<String[],
ParsingContext> Provides anIterableResult
for iterating rows parsed from the input.final IterableResult<String[],
ParsingContext> Provides anIterableResult
for iterating rows parsed from the input.final IterableResult<String[],
ParsingContext> AbstractParser.iterate
(InputStream input) Provides anIterableResult
for iterating rows parsed from the input.final IterableResult<String[],
ParsingContext> AbstractParser.iterate
(InputStream input, String encoding) Provides anIterableResult
for iterating rows parsed from the input.final IterableResult<String[],
ParsingContext> AbstractParser.iterate
(InputStream input, Charset encoding) Provides anIterableResult
for iterating rows parsed from the input.final IterableResult<String[],
ParsingContext> Provides anIterableResult
for iterating rows parsed from the input.final IterableResult<Record,
ParsingContext> AbstractParser.iterateRecords
(File input) Provides anIterableResult
for iterating records parsed from the input.final IterableResult<Record,
ParsingContext> AbstractParser.iterateRecords
(File input, String encoding) Provides anIterableResult
for iterating records parsed from the input.final IterableResult<Record,
ParsingContext> AbstractParser.iterateRecords
(File input, Charset encoding) Provides anIterableResult
for iterating records parsed from the input.final IterableResult<Record,
ParsingContext> AbstractParser.iterateRecords
(InputStream input) Provides anIterableResult
for iterating records parsed from the input.final IterableResult<Record,
ParsingContext> AbstractParser.iterateRecords
(InputStream input, String encoding) Provides anIterableResult
for iterating records parsed from the input.final IterableResult<Record,
ParsingContext> AbstractParser.iterateRecords
(InputStream input, Charset encoding) Provides anIterableResult
for iterating records parsed from the input.final IterableResult<Record,
ParsingContext> AbstractParser.iterateRecords
(Reader input) Provides anIterableResult
for iterating records parsed from the input. -
Uses of IterableResult in com.univocity.parsers.common.iterators
Classes in com.univocity.parsers.common.iterators that implement IterableResultModifier and TypeClassDescription(package private) class
AnIterator
over the parser enabling easy iteration against rows and records Multiple iterations are possible if Files are being fed into the parser, but other forms of input (such asInputStream
s andReader
s) can not be iterated over more than once.class
An iterator ofRecord
s.class
An iterator ofString[]
. -
Uses of IterableResult in com.univocity.parsers.common.routine
Methods in com.univocity.parsers.common.routine that return IterableResultModifier and TypeMethodDescription<T> IterableResult<T,
ParsingContext> Iterates over a file to produce instances of annotated java beans on demand.<T> IterableResult<T,
ParsingContext> Iterates over a file to produce instances of annotated java beans on demand.<T> IterableResult<T,
ParsingContext> Iterates over a file to produce instances of annotated java beans on demand.<T> IterableResult<T,
ParsingContext> AbstractRoutines.iterate
(Class<T> beanType, InputStream input) Iterates over an input stream to produce instances of annotated java beans on demand.<T> IterableResult<T,
ParsingContext> AbstractRoutines.iterate
(Class<T> beanType, InputStream input, String encoding) Iterates over an input stream to produce instances of annotated java beans on demand.<T> IterableResult<T,
ParsingContext> AbstractRoutines.iterate
(Class<T> beanType, InputStream input, Charset encoding) Iterates over an input stream to produce instances of annotated java beans on demand.<T> IterableResult<T,
ParsingContext> Iterates over an input to produce instances of annotated java beans on demand.