Uses of Interface
com.univocity.parsers.common.input.CharInput
Packages that use CharInput
Package
Description
-
Uses of CharInput in com.univocity.parsers.common.input
Subinterfaces of CharInput in com.univocity.parsers.common.inputModifier and TypeInterfaceDescriptioninterface
The definition of a character input reader used by all univocity-parsers that extendAbstractParser
.Classes in com.univocity.parsers.common.input that implement CharInputModifier 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.Methods in com.univocity.parsers.common.input with parameters of type CharInputModifier and TypeMethodDescriptionchar
CharAppender.appendUntil
(char ch, CharInput input, char stop) Appends characters from the input, until a stop character is foundchar
CharAppender.appendUntil
(char ch, CharInput input, char stop1, char stop2) Appends characters from the input, until a stop character is foundchar
CharAppender.appendUntil
(char ch, CharInput input, char stop1, char stop2, char stop3) Appends characters from the input, until a stop character is foundchar
DefaultCharAppender.appendUntil
(char ch, CharInput input, char stop) char
DefaultCharAppender.appendUntil
(char ch, CharInput input, char stop1, char stop2) char
DefaultCharAppender.appendUntil
(char ch, CharInput input, char stop1, char stop2, char stop3) final char
ExpandingCharAppender.appendUntil
(char ch, CharInput input, char stop) final char
ExpandingCharAppender.appendUntil
(char ch, CharInput input, char stop1, char stop2) final char
ExpandingCharAppender.appendUntil
(char ch, CharInput input, char stop1, char stop2, char stop3) char
NoopCharAppender.appendUntil
(char ch, CharInput input, char stop) final char
NoopCharAppender.appendUntil
(char ch, CharInput input, char stop1, char stop2) final char
NoopCharAppender.appendUntil
(char ch, CharInput input, char stop1, char stop2, char stop3) -
Uses of CharInput in com.univocity.parsers.common.input.concurrent
Classes in com.univocity.parsers.common.input.concurrent that implement CharInputModifier and TypeClassDescriptionclass
A concurrent CharInputReader that loads batches of characters in a separate thread and assigns them to buffer inAbstractCharInputReader
when requested.