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 TypeInterfaceDescriptioninterfaceThe definition of a character input reader used by all univocity-parsers that extendAbstractParser.Classes in com.univocity.parsers.common.input that implement CharInputModifier and TypeClassDescriptionclassThe base class for implementing different flavours ofCharInputReader.classA default CharInputReader which only loads batches of characters when requested by theAbstractCharInputReaderthrough theDefaultCharInputReader.reloadBuffer()method.classA special implementation ofCharInputReaderthat wraps anotherCharInputReaderand 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 TypeMethodDescriptioncharCharAppender.appendUntil(char ch, CharInput input, char stop) Appends characters from the input, until a stop character is foundcharCharAppender.appendUntil(char ch, CharInput input, char stop1, char stop2) Appends characters from the input, until a stop character is foundcharCharAppender.appendUntil(char ch, CharInput input, char stop1, char stop2, char stop3) Appends characters from the input, until a stop character is foundcharDefaultCharAppender.appendUntil(char ch, CharInput input, char stop) charDefaultCharAppender.appendUntil(char ch, CharInput input, char stop1, char stop2) charDefaultCharAppender.appendUntil(char ch, CharInput input, char stop1, char stop2, char stop3) final charExpandingCharAppender.appendUntil(char ch, CharInput input, char stop) final charExpandingCharAppender.appendUntil(char ch, CharInput input, char stop1, char stop2) final charExpandingCharAppender.appendUntil(char ch, CharInput input, char stop1, char stop2, char stop3) charNoopCharAppender.appendUntil(char ch, CharInput input, char stop) final charNoopCharAppender.appendUntil(char ch, CharInput input, char stop1, char stop2) final charNoopCharAppender.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 TypeClassDescriptionclassA concurrent CharInputReader that loads batches of characters in a separate thread and assigns them to buffer inAbstractCharInputReaderwhen requested.