Uses of Interface
com.univocity.parsers.common.input.CharInputReader
Packages that use CharInputReader
Package
Description
-
Uses of CharInputReader in com.univocity.parsers.common
Fields in com.univocity.parsers.common declared as CharInputReaderModifier and TypeFieldDescriptionprotected CharInputReader
AbstractParser.input
private final CharInputReader
DefaultParsingContext.input
Methods in com.univocity.parsers.common that return CharInputReaderModifier and TypeMethodDescriptionprotected 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 CharInputReaderModifier and TypeClassDescriptionclass
The base class for implementing different flavours ofCharInputReader
.class
A default CharInputReader which only loads batches of characters when requested by theAbstractCharInputReader
through theDefaultCharInputReader.reloadBuffer()
method.class
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 CharInputReaderConstructors in com.univocity.parsers.common.input with parameters of type CharInputReaderModifierConstructorDescriptionLookaheadCharInputReader
(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 CharInputReaderModifier and TypeClassDescriptionclass
A concurrent CharInputReader that loads batches of characters in a separate thread and assigns them to buffer inAbstractCharInputReader
when requested.