Uses of Interface
com.univocity.parsers.common.input.CharInputReader
-
Packages that use CharInputReader Package Description com.univocity.parsers.common com.univocity.parsers.common.input com.univocity.parsers.common.input.concurrent -
-
Uses of CharInputReader in com.univocity.parsers.common
Fields in com.univocity.parsers.common declared as CharInputReader Modifier and Type Field Description protected CharInputReader
AbstractParser. input
private CharInputReader
DefaultParsingContext. input
Methods in com.univocity.parsers.common that return CharInputReader Modifier and Type Method Description protected CharInputReader
CommonParserSettings. newCharInputReader(int whitespaceRangeStart)
An implementation ofCharInputReader
which loads the parser buffer in parallel or sequentially, as defined by the readInputOnSeparateThread property -
Uses of CharInputReader in com.univocity.parsers.common.input
Classes in com.univocity.parsers.common.input that implement CharInputReader Modifier and Type Class Description class
AbstractCharInputReader
The base class for implementing different flavours ofCharInputReader
.class
DefaultCharInputReader
A default CharInputReader which only loads batches of characters when requested by theAbstractCharInputReader
through theDefaultCharInputReader.reloadBuffer()
method.class
LookaheadCharInputReader
A special implementation ofCharInputReader
that wraps anotherCharInputReader
and collects a sequence of characters from the wrapped input, in order to analyze what the buffer contains ahead of the current position.Fields in com.univocity.parsers.common.input declared as CharInputReader Modifier and Type Field Description private CharInputReader
LookaheadCharInputReader. reader
Constructors in com.univocity.parsers.common.input with parameters of type CharInputReader Constructor Description LookaheadCharInputReader(CharInputReader reader, char newLine, int whitespaceRangeStart)
Creates a lookahead input reader by wrapping a givenCharInputReader
implementation -
Uses of CharInputReader in com.univocity.parsers.common.input.concurrent
Classes in com.univocity.parsers.common.input.concurrent that implement CharInputReader Modifier and Type Class Description class
ConcurrentCharInputReader
A concurrent CharInputReader that loads batches of characters in a separate thread and assigns them to buffer inAbstractCharInputReader
when requested.
-